You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
206 B

4 years ago
  1. package grmi
  2. import (
  3. "fmt"
  4. "time"
  5. )
  6. type DateTime time.Time
  7. func (self DateTime) MarshalJSON() ([]byte, error) {
  8. return []byte(fmt.Sprintf("\"%s\"", time.Time(self).Format("20060102150405"))), nil
  9. }