mirror of
https://github.com/logos-messaging/nim-sds.git
synced 2026-01-02 14:13:07 +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
|