Files
kitty-mirror/tools/utils/clock_without_raw.go
Kovid Goyal 3d98b33076 ...
2024-04-09 08:39:42 +05:30

12 lines
132 B
Go

//go:build !linux && !darwin
package utils
import (
"time"
)
func MonotonicRaw() (time.Time, error) {
return time.Now(), nil
}