mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-25 00:56:35 +08:00
10 lines
172 B
Go
10 lines
172 B
Go
package timex
|
|
|
|
import "time"
|
|
|
|
const DefaultDateTimeFormat = "2006-01-02 15:04:05"
|
|
|
|
func DefaultFormat(time time.Time) string {
|
|
return time.Format(DefaultDateTimeFormat)
|
|
}
|