Introduction of segment-based seat reservation

This commit is contained in:
Stephanos A
2026-05-17 11:11:39 +03:00
parent 39ba561d8f
commit 071a57a668
14 changed files with 2042 additions and 8 deletions

View File

@@ -0,0 +1,22 @@
import { Module } from '@nestjs/common';
import { SegmentsService } from './segments.service';
import { EnhancedSeatsService } from './enhanced-seats.service';
import { TripProgressService } from './trip-progress.service';
import { SegmentSeatsController } from './segments.controller';
import { PrismaService } from '../../common/prisma.service';
@Module({
controllers: [SegmentSeatsController],
providers: [
SegmentsService,
EnhancedSeatsService,
TripProgressService,
PrismaService
],
exports: [
SegmentsService,
EnhancedSeatsService,
TripProgressService
]
})
export class SegmentsModule {}