Files
LearnGO/go/pkg/mod/github.com/jackc/puddle@v1.3.0/nanotime_time.go
T
2024-09-19 21:38:24 -04:00

14 lines
200 B
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()
}