format fix

This commit is contained in:
Aleksandr Zelenin 2019-11-06 20:23:19 +03:00
parent faee0d86f7
commit 9e9b0f6083

View file

@ -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