mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-06 09:15:57 +02: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
|
|
}
|