mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-07 15:25:45 +00:00
23 lines
1.1 KiB
TypeScript
23 lines
1.1 KiB
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HttpModule } from '@nestjs/axios';
|
|
import { AuditModule } from '../../common/audit.module';
|
|
import { BookingsController } from './bookings.controller';
|
|
import { BookingsService } from './bookings.service';
|
|
import { GuestBookingService } from './guest-booking.service';
|
|
import { SeatsModule } from '../seats/seats.module';
|
|
import { VerifaydaModule } from '../verifayda/verifayda.module';
|
|
import { CurrencyModule } from '../currency/currency.module';
|
|
import { AuthModule } from '../auth/auth.module';
|
|
import { FareEngineModule } from '../fare-engine/fare-engine.module';
|
|
import { TicketsModule } from '../tickets/tickets.module';
|
|
import { PaymentsModule } from '../payments/payments.module';
|
|
import { NotificationsModule } from '../notifications/notifications.module';
|
|
|
|
@Module({
|
|
imports: [AuditModule, SeatsModule, VerifaydaModule, CurrencyModule, FareEngineModule, HttpModule, AuthModule, TicketsModule, PaymentsModule, NotificationsModule],
|
|
controllers: [BookingsController],
|
|
providers: [BookingsService, GuestBookingService],
|
|
exports: [BookingsService, GuestBookingService]
|
|
})
|
|
export class BookingsModule {}
|