dear
a []byte has a filed "createime" : "2018-07-05T09:55:16.000+0000", the value of createime is a time format, i define a struct like "type a struct{ Createime time.Time `json:"createime"`}"
when i use json.Unmarshal parse it, it fail and output not support
i search golang standard package, and find that golang support the two flowlling time format
RFC3339 = "2006-01-02T15:04:05Z07:00 RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00"
,but not find const RFC3339NanoZ = "2006-01-02T15:04:05.999999999+0700"
anyone can tell me how to make it works?