mirror of https://github.com/waku-org/nwaku.git
9 lines
231 B
Nim
9 lines
231 B
Nim
|
|
||
|
type JsonSignal* = ref object of RootObj
|
||
|
# https://rfc.vac.dev/spec/36/#jsonsignal-type
|
||
|
eventType* {.requiresInit.}: string
|
||
|
|
||
|
method `$`*(jsonSignal: JsonSignal): string {.base.} = discard
|
||
|
# All events should implement this
|
||
|
|