YiTao/util/time.go
2024-11-09 14:59:27 +08:00

8 lines
80 B
Go

package util
import "time"
func GetTime() int64 {
return time.Now().Unix()
}