1
0
mirror of https://github.com/nikoksr/notify.git synced 2025-01-26 03:20:21 +02:00
notify/use.go

15 lines
351 B
Go
Raw Normal View History

2021-01-25 00:14:21 +01:00
package notify
2021-01-31 12:14:48 +00:00
// useService adds a given service to the notifiers services list.
func (n *Notify) useService(service Notifier) {
2021-01-25 00:14:21 +01:00
if service == nil {
return
}
n.notifiers = append(n.notifiers, service)
2021-01-25 00:14:21 +01:00
}
// UseService adds a given service to the notifiers services list.
func (n *Notify) UseService(service Notifier) {
2021-01-25 00:14:21 +01:00
n.useService(service)
}