mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-13 16:25:00 +00:00
7 lines
226 B
Nim
7 lines
226 B
Nim
type JsonEvent* = ref object of RootObj # https://rfc.vac.dev/spec/36/#jsonsignal-type
|
|
eventType* {.requiresInit.}: string
|
|
|
|
method `$`*(jsonEvent: JsonEvent): string {.base.} =
|
|
discard
|
|
# All events should implement this
|