machine/machine/subscription.go
Matthew Rich 2c2b4cb3b5
Some checks failed
Machine Tests / test (push) Waiting to run
Lint / golangci-lint (push) Has been cancelled
move pkg
2024-04-04 11:43:42 -07:00

8 lines
158 B
Go

// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package machine
type Subscriber interface {
Notify(m *EventMessage)
}