mirror of
https://github.com/Kpa-clawbot/meshcore-analyzer.git
synced 2026-05-12 18:55:25 +00:00
8 lines
98 B
Go
8 lines
98 B
Go
package main
|
|
|
|
import "time"
|
|
|
|
func unixTime(epoch int64) time.Time {
|
|
return time.Unix(epoch, 0)
|
|
}
|