mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
11 lines
212 B
Go
11 lines
212 B
Go
|
package signal
|
||
|
|
||
|
const (
|
||
|
localPairingEvent = "localPairing"
|
||
|
)
|
||
|
|
||
|
// SendLocalPairingEvent sends event from services/pairing/events.
|
||
|
func SendLocalPairingEvent(event interface{}) {
|
||
|
send(localPairingEvent, event)
|
||
|
}
|