mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-04 21:02:25 +08:00
9 lines
120 B
Go
9 lines
120 B
Go
package util
|
|
|
|
import "time"
|
|
|
|
//GetCurrTs return current timestamps
|
|
func GetCurrTs() int64 {
|
|
return time.Now().Unix()
|
|
}
|