events/notifier/notifier.go

10 lines
136 B
Go
Raw Normal View History

2024-04-30 16:39:50 +00:00
package notifier
import (
"git.faercol.me/management-platform/events/event"
)
type Notifier interface {
Notify(event event.Event)
}