From 17bec31bf8157c32e4cc0c21dc819c0a7e95f965 Mon Sep 17 00:00:00 2001 From: JuruSysadmin Date: Fri, 21 Nov 2025 17:17:04 -0300 Subject: [PATCH] refactor: remove LogisticController, LogisticService and OrdersModule from AppModule --- src/app.module.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/app.module.ts b/src/app.module.ts index 1215226..a1fdb6d 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -9,8 +9,6 @@ import { DataConsultModule } from './data-consult/data-consult.module'; import { OrdersModule } from './orders/modules/orders.module'; import { HttpModule } from '@nestjs/axios'; import { DebModule } from './orders/modules/deb.module'; -import { LogisticController } from './logistic/logistic.controller'; -import { LogisticService } from './logistic/logistic.service'; import jwtConfig from './auth/jwt.config'; import { UsersModule } from './auth/users/users.module'; import { ProductsModule } from './products/products.module'; @@ -54,11 +52,8 @@ import { PartnersModule } from './partners/partners.module'; DataConsultModule, AuthModule, DebModule, - OrdersModule, PartnersModule, ], - controllers: [LogisticController], - providers: [LogisticService], }) export class AppModule implements NestModule { configure(consumer: MiddlewareConsumer) {