mirror of
https://github.com/status-im/status-keycard-go.git
synced 2025-02-24 20:18:06 +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)
|
|
}
|