iptables-helper/pkg/utils/json/json.go
2023-11-02 18:30:54 +08:00

11 lines
172 B
Go

package utils
import (
"github.com/goccy/go-json"
)
func Json(data interface{}) string {
jsonBytes, _ := json.MarshalIndent(data, "", " ")
return string(jsonBytes)
}