mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-02 21:43:11 +00:00
9 lines
193 B
Nim
9 lines
193 B
Nim
import std/times
|
|
import ./clock
|
|
|
|
type SystemClock* = ref object of Clock
|
|
|
|
method now*(clock: SystemClock): SecondsSince1970 {.raises: [].} =
|
|
let now = times.now().utc
|
|
now.toTime().toUnix()
|