Add NewSQLiteSessionManager helper that creates an SCS session manager backed by SQLite, allowing sessions to persist across server restarts. The function handles table creation automatically.
25 lines
726 B
Modula-2
25 lines
726 B
Modula-2
module github.com/ryanhamamura/via
|
|
|
|
go 1.25.4
|
|
|
|
require maragu.dev/gomponents v1.2.0
|
|
|
|
require (
|
|
github.com/DATA-DOG/go-sqlmock v1.5.2
|
|
github.com/alexedwards/scs/sqlite3store v0.0.0-20251002162104-209de6e426de
|
|
github.com/alexedwards/scs/v2 v2.9.0
|
|
github.com/mattn/go-sqlite3 v1.14.32
|
|
github.com/starfederation/datastar-go v1.0.3
|
|
github.com/stretchr/testify v1.10.0
|
|
)
|
|
|
|
require (
|
|
github.com/CAFxX/httpcompression v0.0.9 // indirect
|
|
github.com/andybalholm/brotli v1.2.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/klauspost/compress v1.18.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|