In this thread you will find your answer :
Golang: Accessing a map using its reference
You don’t need to use a pointer with a map.
Map types are reference types, like pointers or slices[1]
If you needed to change the Session you could use a pointer:
map[string]*Sessionhttps://blog.golang.org/go-maps-in-action