MVP Build
This commit is contained in:
18
backend/src/features/maintenance/index.ts
Normal file
18
backend/src/features/maintenance/index.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* @ai-summary Public API for maintenance feature capsule
|
||||
* @ai-note This is the ONLY file other features should import from
|
||||
*/
|
||||
|
||||
// Export service for use by other features
|
||||
export { UmaintenanceService } from './domain/lUmaintenance.service';
|
||||
|
||||
// Export types needed by other features
|
||||
export type {
|
||||
Umaintenance,
|
||||
CreateUmaintenanceRequest,
|
||||
UpdateUmaintenanceRequest,
|
||||
UmaintenanceResponse
|
||||
} from './domain/lUmaintenance.types';
|
||||
|
||||
// Internal: Register routes with Express app
|
||||
export { registerUmaintenanceRoutes } from './api/lUmaintenance.routes';
|
||||
Reference in New Issue
Block a user