Add SessionStore interface

This commit is contained in:
Joel Speed
2019-05-18 13:10:00 +02:00
parent fd6655411b
commit 530acff38c
+12
View File
@@ -0,0 +1,12 @@
package sessions
import (
"net/http"
)
// SessionStore is an interface to storing user sessions in the proxy
type SessionStore interface {
SaveSession(rw http.ResponseWriter, req *http.Request, s *SessionState) error
LoadSession(req *http.Request) (*SessionState, error)
ClearSession(rw http.ResponseWriter, req *http.Request) error
}