go-watch/notifiers/notifier.go

7 lines
104 B
Go

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