1 2 3 4 5 6 7
package utils import "time" func FormatDate(ts int64) string { return time.Unix(ts, 0).Format("15:04 02.01.2006") }