mirror of
https://github.com/kemko/nomad.git
synced 2026-01-03 08:55:43 +03:00
11 lines
211 B
Go
11 lines
211 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package interfaces
|
|
|
|
import "github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
type EventEmitter interface {
|
|
EmitEvent(event *structs.TaskEvent)
|
|
}
|