github.com/status-im/status-go@v1.1.0/signal/events_pn.go (about)

     1  package signal
     2  
     3  const (
     4  	notificationEvent = "local-notifications"
     5  )
     6  
     7  // SendLocalNotifications sends event with a local notification.
     8  func SendLocalNotifications(event interface{}) {
     9  	send(notificationEvent, event)
    10  }