Use standard library for JSON encoding

This commit is contained in:
2019-11-03 01:56:42 +09:00
parent 7f4534f03e
commit 9d97be7c15
6 changed files with 15 additions and 12 deletions

View File

@ -1,6 +1,7 @@
package arn
import (
"encoding/json"
"errors"
"flag"
"fmt"
@ -17,7 +18,6 @@ import (
"github.com/akyoto/color"
"github.com/animenotifier/kitsu"
"github.com/animenotifier/mal"
jsoniter "github.com/json-iterator/go"
shortid "github.com/ventu-io/go-shortid"
)
@ -139,7 +139,7 @@ func AgeInYears(birthDayString string) int {
// JSON turns the object into a JSON string.
func JSON(obj interface{}) string {
data, err := jsoniter.Marshal(obj)
data, err := json.Marshal(obj)
if err == nil {
return string(data)