This commit is contained in:
wangchuxiao 2023-01-12 10:55:07 +08:00
parent 4649eb11e6
commit 6808d734b4

View File

@ -124,7 +124,7 @@ type FuncInfo struct {
type Args map[string]interface{}
func (a *Args) String() string {
func (a Args) String() string {
bytes, _ := json.Marshal(a)
return string(bytes)
}