status-go/signal/events_pn.go
Gheorghe Pinzaru d04e54e54e
Local notifications service (#2026)
Also adds implementation for eth transactions notifications
2020-10-28 10:56:14 +03:00

10 lines
218 B
Go

package signal
const (
notificationEvent = "local-notifications"
)
// SendLocalNotifications sends event with a local notification.
func SendLocalNotifications(event interface{}) {
send(notificationEvent, event)
}