mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-28 00:50:56 +00:00
18 lines
663 B
TypeScript
18 lines
663 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';
|
|
|
|
@Module({
|
|
imports: [HttpModule, PaymentsModule, NotificationsModule],
|
|
controllers: [ExcessBaggageAgentController, ExcessBaggagePublicController],
|
|
providers: [ExcessBaggageService],
|
|
exports: [ExcessBaggageService],
|
|
})
|
|
export class ExcessBaggageModule {}
|