Files
webhooker/internal/session/export_test.go
clawbot 032f265d69
All checks were successful
check / check (push) Successful in 2m56s
Derive cookie Secure and CSRF strictness from the request transport (closes #269)
2026-08-24 03:01:37 +02:00

11 lines
306 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) *sessions.CookieStore {
return newStore(key)
}