github.com/jackc/puddle@v1.3.0/nanotime_time.go (about) 1 // +build purego appengine js 2 3 // This file contains the safe implementation of nanotime using time.Now(). 4 5 package puddle 6 7 import ( 8 "time" 9 ) 10 11 func nanotime() int64 { 12 return time.Now().UnixNano() 13 }