0x4a52466c696e74 2 ماه پیش
والد
کامیت
67e48b101b
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      serialize.go

+ 2 - 1
serialize.go

@@ -236,9 +236,10 @@ func parseMap(from, to reflect.Value, fieldName string) IErrorArgs {
 func Serialize(from json.Map, to any) IErrorArgs {
 	log.Println("serialize", to)
 	elemTo := reflect.ValueOf(to).Elem()
-	return parseType(
+	res := parseType(
 		reflect.ValueOf(&from),
 		elemTo,
 		"",
 	)
+	log.Println("sres", res)
 }