10 lines
563 B
Go
10 lines
563 B
Go
// Package notifiers holds all the notifiers for Statup, which also includes
|
|
// user created notifiers that have been accepted in a Push Request. Read the wiki
|
|
// to see a full example of a notifier with all events, visit Statup's
|
|
// notifier example code: https://github.com/hunterlong/statup/wiki/Notifier-Example
|
|
//
|
|
// This package shouldn't contain any exports, to see how notifiers work
|
|
// visit the core/notifier package at: https://godoc.org/github.com/hunterlong/statup/core/notifier
|
|
// and learn how to create your own custom notifier.
|
|
package notifiers
|