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
|
|
|
|
|
2024-01-13 23:46:12 +03:00
|
|
|
const (
|
|
|
|
ZeroDuration Duration = 0
|
|
|
|
Microsecond = time.Microsecond
|
|
|
|
Millisecond = time.Millisecond
|
|
|
|
Second = time.Second
|
|
|
|
)
|
|
|
|
|