time.go 396 B

12345678910111213141516171819202122232425
  1. package util
  2. import (
  3. "fmt"
  4. "time"
  5. )
  6. const (
  7. // TimeFormat .
  8. TimeFormat = "2006-01-02 15:04:05"
  9. )
  10. // JSONTime .
  11. type JSONTime time.Time
  12. // MarshalJSON .
  13. func (jt JSONTime) MarshalJSON() ([]byte, error) {
  14. stamp := fmt.Sprintf("%q", time.Time(jt).Format(TimeFormat))
  15. return []byte(stamp), nil
  16. }
  17. // Before .
  18. func (jt JSONTime) Before(t time.Time) bool {
  19. return time.Time(jt).Before(t)
  20. }