DEBSOURCES
Skip Quicknav
sources / kitty / 0.42.1-1 / tools / utils / clock_without_raw.go
1234567891011
//go:build !linux && !darwin package utils import ( "time" ) func MonotonicRaw() (time.Time, error) { return time.Now(), nil }