10 lines
136 B
Go
10 lines
136 B
Go
|
package notifier
|
||
|
|
||
|
import (
|
||
|
"git.faercol.me/management-platform/events/event"
|
||
|
)
|
||
|
|
||
|
type Notifier interface {
|
||
|
Notify(event event.Event)
|
||
|
}
|