github.com/coyove/common@v0.0.0-20240403014525-f70e643f9de8/rand/counter.go (about)

     1  //+build !windows,!linux
     2  
     3  package rand
     4  
     5  import (
     6  	"time"
     7  )
     8  
     9  func GetCounter() int64 {
    10  	return time.Now().UnixNano()
    11  }