SessionHandler handles session-related requests
| 23 | |
| 24 | // SessionHandler handles session-related requests |
| 25 | type SessionHandler struct { |
| 26 | store *store.Store |
| 27 | } |
| 28 | |
| 29 | // NewSessionHandler creates a new SessionHandler |
| 30 | func NewSessionHandler(st store.Store) *SessionHandler { |
nothing calls this directly
no outgoing calls
no test coverage detected