2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-12 23:55:03 +00:00

11 lines
181 B
Go
Raw Normal View History

package signal
const (
walletEvent = "wallet"
)
// SendWalletEvent sends event from services/wallet/events.
func SendWalletEvent(event interface{}) {
send(walletEvent, event)
}