finish session getting code

This commit is contained in:
Gregory Wells
2026-06-07 20:27:42 -04:00
parent 78d259ea3b
commit 5386b64648
3 changed files with 19 additions and 10 deletions
+3 -3
View File
@@ -3,9 +3,9 @@ package session
import "time"
type SessionData struct {
UserID string
CSRFToken string
ExpiresAt time.Time
UserID string `json:"userid"`
CSRFToken string `json:"csrftoken"`
ExpiresAt time.Time `json:"expiresat"`
}
type SessionStore interface {