Oapi-Feishu/code/utils/commonUtils.go
2024-01-28 01:20:44 +08:00

13 lines
236 B
Go

package utils
import (
"time"
)
func GetCurrentDateAsString() string {
return time.Now().Format("2006-01-02")
// 本地测试可以用这个。将1天缩短到10秒。
//return strconv.Itoa((time.Now().Second() + 100000) / 10)
}