mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
11 lines
181 B
Go
11 lines
181 B
Go
|
package signal
|
||
|
|
||
|
const (
|
||
|
walletEvent = "wallet"
|
||
|
)
|
||
|
|
||
|
// SendWalletEvent sends event from services/wallet/events.
|
||
|
func SendWalletEvent(event interface{}) {
|
||
|
send(walletEvent, event)
|
||
|
}
|