mirror of
https://github.com/status-im/status-keycard-go.git
synced 2025-02-12 06:16:48 +00:00
10 lines
157 B
Go
10 lines
157 B
Go
package signal
|
|
|
|
const (
|
|
EventKeycardConnected = "keycard.connected"
|
|
)
|
|
|
|
func SendKeycardConnected(event interface{}) {
|
|
send(EventKeycardConnected, event)
|
|
}
|