19 lines
455 B
TypeScript
19 lines
455 B
TypeScript
/**
|
|
* @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 with Fastify app
|
|
export { fuelLogsRoutes, registerFuelLogsRoutes } from './api/fuel-logs.routes';
|