Get returns a session for the given name after adding it to the registry. See CookieStore.Get().
(r *http.Request, name string)
| 182 | // |
| 183 | // See CookieStore.Get(). |
| 184 | func (s *FilesystemStore) Get(r *http.Request, name string) (*Session, error) { |
| 185 | return GetRegistry(r).Get(s, name) |
| 186 | } |
| 187 | |
| 188 | // New returns a session for the given name without adding it to the registry. |
| 189 | // |
nothing calls this directly
no test coverage detected