feat(db): add code gen to build sqlc-compatible wrappers

This commit is contained in:
Scott McKendry
2026-05-03 13:49:24 +12:00
parent ad6751df2a
commit 03cebb8dba
7 changed files with 883 additions and 15 deletions
+1 -1
View File
@@ -75,5 +75,5 @@ func (app *BootstrapApp) setupSQLite(databasePath string) (repository.Store, err
app.db = db
return sqlite.New(db), nil
return sqlite.NewStore(sqlite.New(db)), nil
}