Spaces:
Sleeping
Sleeping
File size: 335 Bytes
57a889c | 1 2 3 4 5 6 7 8 9 10 11 | import { Module } from '@nestjs/common';
import { BudgetController } from './budget.controller';
import { BudgetService } from './budget.service';
/** Budget domain (S4 — Phase 2 trip sub-domain). Registered in AppModule. */
@Module({
controllers: [BudgetController],
providers: [BudgetService],
})
export class BudgetModule {}
|