NewSessionHandler creates a new SessionHandler
(st store.Store)
| 28 | |
| 29 | // NewSessionHandler creates a new SessionHandler |
| 30 | func NewSessionHandler(st store.Store) *SessionHandler { |
| 31 | return &SessionHandler{store: &st} |
| 32 | } |
| 33 | |
| 34 | // Create creates a new session |
| 35 | func (h *SessionHandler) Create(c *gin.Context) { |
no outgoing calls
no test coverage detected