package utils import "time" const ( DateTimeFormat string = "2006-01-02 15:04:05" DateTimeFormat2 string = "2006-01-02 15:04" DateFormat string = "2006-01-02" ) func GetCurrentTime() time.Time { return time.Now() }