mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b3ee9ac74e
Docker-DCO-1.1-Signed-off-by: Victor Vieux <vieux@docker.com> (github: vieux)
10 lines
216 B
Go
10 lines
216 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/utils"
|
|
)
|
|
|
|
type Server interface {
|
|
LogEvent(action, id, from string) *utils.JSONMessage
|
|
IsRunning() bool // returns true if the server is currently in operation
|
|
}
|