When unflattening something like
map[string]interface{}{
"pew.0": "woop",
}
The result is
or as a type map[string]map[string]interface{}
What I would expect is to be the result is
or as a type map[string][]interface{}
Are there any plans to remedy this? Would you be willing to merge such a feature if I (or someone else) implemented it?
PS: I'm working on recursively unflattening input - I will upstream that in a PR here later :)