Files
mayfly-go/server/pkg/utils/timex/timex.go

10 lines
172 B
Go
Raw Normal View History

package timex
import "time"
2023-12-29 16:48:15 +08:00
const DefaultDateTimeFormat = "2006-01-02 15:04:05"
func DefaultFormat(time time.Time) string {
2023-12-29 16:48:15 +08:00
return time.Format(DefaultDateTimeFormat)
}