MVP Build
This commit is contained in:
18
backend/src/features/fuel-logs/index.ts
Normal file
18
backend/src/features/fuel-logs/index.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* @ai-summary Public API for fuel-logs feature capsule
|
||||
*/
|
||||
|
||||
// Export service for use by other features
|
||||
export { FuelLogsService } from './domain/fuel-logs.service';
|
||||
|
||||
// Export types
|
||||
export type {
|
||||
FuelLog,
|
||||
CreateFuelLogRequest,
|
||||
UpdateFuelLogRequest,
|
||||
FuelLogResponse,
|
||||
FuelStats
|
||||
} from './domain/fuel-logs.types';
|
||||
|
||||
// Internal: Register routes
|
||||
export { registerFuelLogsRoutes } from './api/fuel-logs.routes';
|
||||
Reference in New Issue
Block a user