botkube/pkg/notify/notify.go
2019-01-03 17:37:20 +05:30

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
}