utils.go 197 B

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