mirror of
https://github.com/chaitin/SafeLine.git
synced 2025-11-25 03:15:15 +08:00
10 lines
91 B
Go
10 lines
91 B
Go
package misc
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func Now() int64 {
|
|
return time.Now().UnixNano() / 1e3
|
|
}
|