server.go 218 B

12345678910
  1. package daemon
  2. import (
  3. "github.com/dotcloud/docker/utils"
  4. )
  5. type Server interface {
  6. LogEvent(action, id, from string) *utils.JSONMessage
  7. IsRunning() bool // returns true if the server is currently in operation
  8. }