package api_util import "encoding/json" func JsonString(o any) string { bs, _ := json.Marshal(o) return string(bs) }