8 lines
80 B
Go
8 lines
80 B
Go
package util
|
|
|
|
import "time"
|
|
|
|
func GetTime() int64 {
|
|
return time.Now().Unix()
|
|
}
|