This commit is contained in:
2025-12-03 14:34:46 +03:30
parent 5af26445fa
commit ccabe04b60
2 changed files with 2 additions and 2 deletions
-2
View File
@@ -1,6 +1,5 @@
import { Module } from '@nestjs/common';
import { MikroOrmModule } from '@mikro-orm/nestjs';
import { ScheduleModule } from '@nestjs/schedule';
import { OrdersService } from './orders.service';
import { OrdersController } from './orders.controller';
import { Order } from './entities/order.entity';
@@ -18,7 +17,6 @@ import { JwtModule } from '@nestjs/jwt';
@Module({
imports: [
ScheduleModule,
MikroOrmModule.forFeature([Order, OrderItem, User, Restaurant, Food, UserAddress, PaymentMethod]),
CartModule,
UtilsModule,