Files
docker-docs/event.go
Andrea Luzzardi 05864a3b2a Initial commit.
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
2014-11-07 16:41:33 -08:00

15 lines
190 B
Go

package libcluster
import "time"
type Event struct {
Type string
Container *Container
Node *Node
Time time.Time
}
type EventHandler interface {
Handle(*Event) error
}