mirror of
https://github.com/valitydev/botkube.git
synced 2024-11-06 16:35:22 +00:00
12 lines
229 B
Go
12 lines
229 B
Go
package notify
|
|
|
|
import (
|
|
"github.com/infracloudio/botkube/pkg/events"
|
|
)
|
|
|
|
// Notifier to send event notification on the communication channels
|
|
type Notifier interface {
|
|
SendEvent(events.Event) error
|
|
SendMessage(string) error
|
|
}
|