gofiber-study/common/utils/json.go

11 lines
163 B
Go
Raw Normal View History

package utils
import (
"encoding/json"
)
func Json(data interface{}) string {
jsonBytes, _ := json.MarshalIndent(data, "", " ")
return string(jsonBytes)
}