package beaconfire import "time" // Translate Unix timestamp to string formated with 'YYYY-mm-dd HH:MM:SS' func Ts2Str(ts int64) string { return time.Unix(ts, 0).Format("2006-01-02 15:04:05") }