go-watch/notifiers/notifier.go

7 lines
121 B
Go

package notifiers
type Notifier interface {
Open(configPath string) bool
Message(message string) bool
Close() bool
}