add in config variable for redis sessions

This commit is contained in:
Gregory Wells
2026-06-08 18:44:20 -04:00
parent 11c40a75ac
commit 40429d7618
3 changed files with 15 additions and 5 deletions
+3 -2
View File
@@ -22,8 +22,9 @@ type StyleConfig struct {
}
type WebserverConfig struct {
Port int `json:"port"`
BaseURL string `json:"base_url"`
Port int `json:"port"`
BaseURL string `json:"base_url"`
SessionStore string `json:"session_store"`
}
type EmailConfig struct {