mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 15:07:33 +08:00
8 lines
120 B
Go
8 lines
120 B
Go
package utils
|
|
|
|
import "time"
|
|
|
|
func FormatToLongDateTime(t time.Time) string {
|
|
return t.Format("2006-01-02 15:04:05")
|
|
}
|