File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- // Package cryden is the main entry point for the CrydennSync authentication engine.
1+ // Package cryden is the main entry point for the CrydennSync authentication engine.
22package cryden
33
44import (
99 "github.com/crydensync/cryden/internal/stores/sqlite"
1010)
1111
12- // Engine is the main authentication engine
12+ // Engine is the main authentication engine.
1313type Engine = core.Engine
1414
1515// New creates an in-memory engine (perfect for testing)
@@ -19,7 +19,7 @@ func New() *Engine {
1919 return core .New (userStore , sessionStore )
2020}
2121
22- // WithSQLite creates an engine with persistent SQLite storage
22+ // WithSQLite creates an engine with persistent, SQLite storage
2323func WithSQLite (dbPath string ) (* Engine , error ) {
2424 userStore , err := sqlite .NewUserStore (dbPath )
2525 if err != nil {
You can’t perform that action at this time.
0 commit comments