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