Skip to content

Commit 485f37a

Browse files
committed
fix: add root package file
1 parent e0f59f4 commit 485f37a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cryden.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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.
22
package cryden
33

44
import (
@@ -9,7 +9,7 @@ import (
99
"github.com/crydensync/cryden/internal/stores/sqlite"
1010
)
1111

12-
// Engine is the main authentication engine
12+
// Engine is the main authentication engine.
1313
type 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
2323
func WithSQLite(dbPath string) (*Engine, error) {
2424
userStore, err := sqlite.NewUserStore(dbPath)
2525
if err != nil {

0 commit comments

Comments
 (0)