q5/sysutils.go
aozhiwei 4192dcc9fc 1
2020-09-03 20:06:44 +08:00

12 lines
148 B
Go

package q5
import "time"
func GetDaySeconds(seconds int64) int64 {
return 0
}
func GetTickCount() int64 {
return time.Now().UnixNano() / 1e6
}