(w http.ResponseWriter, r *http.Request, s *authsession.AuthSession)
| 23 | } |
| 24 | |
| 25 | func (p *ProviderRuntime) SetSession(w http.ResponseWriter, r *http.Request, s *authsession.AuthSession) error { |
| 26 | return authsession.SetSession(p.store, r, w, s) |
| 27 | } |
| 28 | |
| 29 | func (p *ProviderRuntime) GetSession(r *http.Request) (*authsession.AuthSession, error) { |
| 30 | return authsession.GetSession(p.store, r) |
no test coverage detected