gg/time.go

17 lines
209 B
Go
Raw Permalink Normal View History

2023-10-23 15:45:18 +03:00
package gg
2023-05-22 23:39:01 +03:00
import (
"time"
)
type Time = time.Time
type Duration = time.Duration
const (
ZeroDuration Duration = 0
Microsecond = time.Microsecond
Millisecond = time.Millisecond
Second = time.Second
)