time.go 84 B

1234567
  1. package tool
  2. import "time"
  3. func GetTimeUnix() int64 {
  4. return time.Now().Unix()
  5. }