Files
flyer-crawler.projectium.com/src/services/db/index.db.ts
Torben Sorensen 80d2b1ffe6
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 4m28s
Add user database service and unit tests
- Implement user database service with functions for user management (create, find, update, delete).
- Add comprehensive unit tests for user database service using Vitest.
- Mock database interactions to ensure isolated testing.
- Create setup files for unit tests to handle database connections and global mocks.
- Introduce error handling for unique constraints and foreign key violations.
- Enhance logging for better traceability during database operations.
2025-12-04 15:30:27 -08:00

13 lines
441 B
TypeScript

// src/services/db/index.db.ts
export * from './connection.db';
export * from './errors.db';
export * from './user.db';
export * from './flyer.db';
export * from './shopping.db';
export * from './personalization.db';
export * from './recipe.db';
export * from './admin.db';
export * from './notification.db';
export * from './gamification.db';
export * from './budget.db';
export * from './address.db'; // Add the new address service exports