mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 19:30:57 +00:00
19 lines
733 B
TypeScript
19 lines
733 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HttpModule } from '@nestjs/axios';
|
|
import { ExcessBaggageService } from './excess-baggage.service';
|
|
import {
|
|
ExcessBaggageAgentController,
|
|
ExcessBaggagePublicController,
|
|
} from './excess-baggage.controller';
|
|
import { PaymentsModule } from '../payments/payments.module';
|
|
import { NotificationsModule } from '../notifications/notifications.module';
|
|
import { AuditModule } from '../../common/audit.module';
|
|
|
|
@Module({
|
|
imports: [HttpModule, PaymentsModule, NotificationsModule, AuditModule],
|
|
controllers: [ExcessBaggageAgentController, ExcessBaggagePublicController],
|
|
providers: [ExcessBaggageService],
|
|
exports: [ExcessBaggageService],
|
|
})
|
|
export class ExcessBaggageModule {}
|