paerser icon indicating copy to clipboard operation
paerser copied to clipboard

feat: handles any with RawValue

Open juliens opened this issue 5 months ago • 1 comments

This PR handles field any as RawValue.

it means that if you have for example something like

"foo.bar.baz"="fuu"
"foo.bar.huu"="hii"

and you try to handle it with a struct like

struct {
  foo any
}

This will do something like this:

{
   foo: map[string]any{
      "bar": map[string]any{
         "baz": "fuu",
         "huu": "hii",
      } 
   }
}

juliens avatar Jan 17 '24 16:01 juliens