Search Apps Documentation Source Content File Folder Download Copy Actions Download

format.gno

0.15 Kb · 11 lines
 1package hub
 2
 3import "time"
 4
 5// timeToUnix converts time to Unix epoch.
 6func timeToUnix(t time.Time) int64 {
 7	if t.IsZero() {
 8		return 0
 9	}
10	return t.Unix()
11}