mirror of
https://github.com/docker/docs.git
synced 2026-04-01 08:48:56 +07:00
15 lines
221 B
Go
15 lines
221 B
Go
package cluster
|
|
|
|
import "github.com/samalba/dockerclient"
|
|
|
|
// Event is exported
|
|
type Event struct {
|
|
dockerclient.Event
|
|
Engine *Engine
|
|
}
|
|
|
|
// EventHandler is exported
|
|
type EventHandler interface {
|
|
Handle(*Event) error
|
|
}
|