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