2
0
Files
puddle/puddleg/nanotime_time.go
T
2022-04-04 07:56:16 -05:00

14 lines
208 B
Go

//go:build purego || appengine || js
// This file contains the safe implementation of nanotime using time.Now().
package puddleg
import (
"time"
)
func nanotime() int64 {
return time.Now().UnixNano()
}