mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-06 09:20:25 +08:00
8 lines
123 B
Go
8 lines
123 B
Go
|
|
package utils
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
func DefaultTimeFormat(time time.Time) string {
|
||
|
|
return time.Format("2006-01-02 15:04:05")
|
||
|
|
}
|