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