mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-01 11:15:59 +00:00
Docker-DCO-1.1-Signed-off-by: Alexander Larsson <alexl@redhat.com> (github: alexlarsson)
11 lines
218 B
Go
11 lines
218 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/dotcloud/docker/utils"
|
|
)
|
|
|
|
type Server interface {
|
|
LogEvent(action, id, from string) *utils.JSONMessage
|
|
IsRunning() bool // returns true if the server is currently in operation
|
|
}
|