Files
nomad/client/allocrunner/taskrunner/interfaces/events.go
2023-08-10 17:27:15 -05:00

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)
}