package utils import "time" func FormatDate(ts int64) string { return time.Unix(ts, 0).Format("15:04 02.01.2006") }