mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
11 lines
132 B
Go
11 lines
132 B
Go
//go:build !linux && !darwin
|
|
|
|
package utils
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func MonotonicRaw() (time.Time, error) {
|
|
return time.Now(), nil
|
|
}
|