(sessionId string)
| 151 | } |
| 152 | |
| 153 | func (manager *SessionManager) GetSessionState(sessionId string) (session *SessionState, err error) { |
| 154 | session, err = manager.store.SessionRead(sessionId) |
| 155 | if err != nil { |
| 156 | session = NewSessionState(manager.store, sessionId, make(map[interface{}]interface{})) |
| 157 | } |
| 158 | return session, nil |
| 159 | } |
| 160 | |
| 161 | // RemoveSessionState delete the session state associated with a specific session ID |
| 162 | func (manager *SessionManager) RemoveSessionState(sessionId string) error { |
no test coverage detected