2
0
mirror of https://github.com/status-im/status-go.git synced 2025-02-20 18:58:14 +00:00
Gheorghe Pinzaru d04e54e54e
Local notifications service ()
Also adds implementation for eth transactions notifications
2020-10-28 10:56:14 +03:00

11 lines
218 B
Go

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