hotime/vendor/github.com/silenceper/wechat/v2/util/time.go

9 lines
121 B
Go
Raw Normal View History

2022-05-24 05:49:25 +00:00
package util
import "time"
// GetCurrTS return current timestamps
func GetCurrTS() int64 {
return time.Now().Unix()
}