If I have a nested map variable like this inside a struct:
type someStruct struct {
nestedMap map[int]map[string]string
}
var ss = someStruct {
nestedMap: make(map[int]map[string]string),
}
This does not work and does a runtime error.
How do I initialize it?