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 1d0a4627a9
commit 0244f39387
7 changed files with 883 additions and 15 deletions
+1 -1
View File
@@ -66,5 +66,5 @@ func (app *BootstrapApp) setupSQLite(databasePath string) (repository.Store, err
return nil, fmt.Errorf("failed to migrate database: %w", err)
}
return sqlite.New(db), nil
return sqlite.NewStore(sqlite.New(db)), nil
}