mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 09:25:46 +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)
|
|
}
|