mirror of
https://github.com/status-im/status-keycard-go.git
synced 2025-01-19 10:52:02 +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)
|
||
|
}
|