status-go/geth/common/notification.go

7 lines
134 B
Go

package common
// Notifier manages Push Notifications.
type Notifier interface {
Notify(body interface{}, tokens ...string) error
}