time.go 209 B

12345678910111213141516
  1. package gg
  2. import (
  3. "time"
  4. )
  5. type Time = time.Time
  6. type Duration = time.Duration
  7. const (
  8. ZeroDuration Duration = 0
  9. Microsecond = time.Microsecond
  10. Millisecond = time.Millisecond
  11. Second = time.Second
  12. )