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