summaryrefslogtreecommitdiff
path: root/runtime/server.go
blob: a74c4d1200be7c4aaac31cf9c4a8184eb9332acd (plain)
1
2
3
4
5
6
7
8
9
10
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
}