12 lines
148 B
Go
12 lines
148 B
Go
package q5
|
|
|
|
import "time"
|
|
|
|
func GetDaySeconds(seconds int64) int64 {
|
|
return 0
|
|
}
|
|
|
|
func GetTickCount() int64 {
|
|
return time.Now().UnixNano() / 1e6
|
|
}
|