ticket-booking-be/src/seat/seat.module.ts
2025-03-18 23:02:21 +05:30

12 lines
311 B
TypeScript

import { Module } from '@nestjs/common';
import { SeatController } from './seat.controller';
import { SeatService } from './seat.service';
import { HttpModule } from '@nestjs/axios';
@Module({
imports: [HttpModule],
providers: [SeatService],
controllers: [SeatController],
})
export class SeatModule { }