package common import "encoding/json" func MarshalJSON(v interface{}) []byte { j, _ := json.Marshal(v) return j }