mirror of
https://github.com/kemko/nomad.git
synced 2026-01-05 09:55:44 +03:00
8 lines
140 B
Go
8 lines
140 B
Go
package interfaces
|
|
|
|
import "github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
type EventEmitter interface {
|
|
EmitEvent(event *structs.TaskEvent)
|
|
}
|