增加时间相关工具函数

This commit is contained in:
白茶清欢 2021-10-07 01:35:22 +08:00
parent 641fcd817c
commit b8c84ebc75

19
util/time.go Normal file
View File

@ -0,0 +1,19 @@
// Package util ...
//
// Description : 时间相关操作
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2021-10-07 1:33 上午
package util
import "time"
// GetCurrentFormatTime 获取当前时间的格式化时间(秒)
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 1:34 上午 2021/10/7
func GetCurrentFormatTime() string {
return time.Now().Format("2006-01-02 15:04:05")
}