Files
webhooker/internal/session/export_test.go
clawbot 5f18bc3eae
All checks were successful
check / check (push) Superseded by a newer commit; never tested
Align session codec max-age with the 7-day cap (closes #108)
2026-08-14 06:17:43 +02:00

11 lines
327 B
Go

package session
import "github.com/gorilla/sessions"
// NewStore exposes the production cookie-store constructor so tests
// exercise the store the application actually runs with, rather than a
// lookalike assembled in the test.
func NewStore(key []byte, secure bool) *sessions.CookieStore {
return newStore(key, secure)
}