gg/time.go

16 lines
209 B
Go

package gg
import (
"time"
)
type Time = time.Time
type Duration = time.Duration
const (
ZeroDuration Duration = 0
Microsecond = time.Microsecond
Millisecond = time.Millisecond
Second = time.Second
)