2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-12 07:35:02 +00:00
2022-09-09 13:24:56 +01:00

11 lines
212 B
Go

package signal
const (
localPairingEvent = "localPairing"
)
// SendLocalPairingEvent sends event from services/pairing/events.
func SendLocalPairingEvent(event interface{}) {
send(localPairingEvent, event)
}