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