format fix
This commit is contained in:
parent
faee0d86f7
commit
9e9b0f6083
|
@ -139,7 +139,7 @@ type JsonInt64 int64
|
||||||
|
|
||||||
// MarshalJSON marshals to json
|
// MarshalJSON marshals to json
|
||||||
func (jsonInt64 JsonInt64) MarshalJSON() ([]byte, error) {
|
func (jsonInt64 JsonInt64) MarshalJSON() ([]byte, error) {
|
||||||
return []byte(`"`+strconv.FormatInt(int64(jsonInt64), 10)+`"`), nil
|
return []byte(`"` + strconv.FormatInt(int64(jsonInt64), 10) + `"`), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// UnmarshalJSON unmarshals from json
|
// UnmarshalJSON unmarshals from json
|
||||||
|
|
Loading…
Reference in a new issue