mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
d04e54e54e
Also adds implementation for eth transactions notifications
11 lines
218 B
Go
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)
|
|
}
|