nim-codex/codex/systemclock.nim
Eric 61ec4275c8
Revert "remove call to waitFor from clock.now and make it async (#691)" (#707)
This reverts commit 591be9446a5cee1ce559c87e496fa4d7dab92924.
2024-02-16 22:12:16 +00:00

11 lines
217 B
Nim

import std/times
import pkg/upraises
import ./clock
type
SystemClock* = ref object of Clock
method now*(clock: SystemClock): SecondsSince1970 {.upraises: [].} =
let now = times.now().utc
now.toTime().toUnix()