Files
mayfly-go/server/pkg/utils/timex/timex.go
2023-07-21 17:07:04 +08:00

8 lines
119 B
Go

package timex
import "time"
func DefaultFormat(time time.Time) string {
return time.Format("2006-01-02 15:04:05")
}