mirror of
https://github.com/status-im/status-lib.git
synced 2025-01-13 22:15:24 +00:00
12 lines
287 B
Nim
12 lines
287 B
Nim
|
import json
|
||
|
|
||
|
import base
|
||
|
import signal_type
|
||
|
|
||
|
type KeycardConnectedSignal* = ref object of Signal
|
||
|
started*: string
|
||
|
|
||
|
proc fromEvent*(T: type KeycardConnectedSignal, event: JsonNode): KeycardConnectedSignal =
|
||
|
result = KeycardConnectedSignal()
|
||
|
result.started = event["event"].getStr()
|