{
"foo":"bar",
"bar":"foo"
}
How to make a struct/type for this json structer?
Here is another one:
{
"foo",
"bar"
}
I know this can be unmarshaled with map[string]string
But for some reasons I need a struct.
Any idea to achieve this?