mirror of
https://github.com/docker/docs.git
synced 2026-04-12 06:19:22 +07:00
15 lines
190 B
Go
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
|
|
}
|