package utils import "encoding/json" // MustString func MustJsonString(in any) string { b, _ := json.Marshal(in) return string(b) }