I try to loop through a map, that I pass as a pointer to a function, but I can\'t find a way to access the elements. This is the code:
func refreshSession(sessio
You don't need to use a pointer with a map.
Map types are reference types, like pointers or slices
If you needed to change the Session you could use a pointer:
Session
map[string]*Session