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