mirror of
https://github.com/logos-messaging/nim-sds.git
synced 2026-01-02 06:03:06 +00:00
11 lines
290 B
Nim
11 lines
290 B
Nim
import std/json
|
|
import ./json_base_event
|
|
|
|
type JsonPeriodicSyncEvent* = ref object of JsonEvent
|
|
|
|
proc new*(T: type JsonPeriodicSyncEvent): T =
|
|
return JsonPeriodicSyncEvent(eventType: "periodic_sync")
|
|
|
|
method `$`*(jsonPeriodicSync: JsonPeriodicSyncEvent): string =
|
|
$(%*jsonPeriodicSync)
|