mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael)
11 lines
219 B
Go
11 lines
219 B
Go
package runtime
|
|
|
|
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
|
|
}
|