nim-codex/dagger/clock.nim

7 lines
154 B
Nim
Raw Normal View History

type
Clock* = ref object of RootObj
SecondsSince1970* = int64
method now*(clock: Clock): SecondsSince1970 {.base.} =
raiseAssert "not implemented"