mirror of
https://github.com/codex-storage/nim-codex.git
synced 2025-01-12 05:54:22 +00:00
7 lines
154 B
Nim
7 lines
154 B
Nim
|
type
|
||
|
Clock* = ref object of RootObj
|
||
|
SecondsSince1970* = int64
|
||
|
|
||
|
method now*(clock: Clock): SecondsSince1970 {.base.} =
|
||
|
raiseAssert "not implemented"
|