mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-08 02:10:24 +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")
|
||
|
|
}
|