machine/subscription.go

8 lines
155 B
Go
Raw Permalink Normal View History

2024-04-04 17:33:22 +00:00
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
2024-04-04 20:08:50 +00:00
2024-04-04 17:33:22 +00:00
package machine
type Subscriber interface {
2024-04-04 20:08:50 +00:00
Notify(m *EventMessage)
2024-04-04 17:33:22 +00:00
}