Ajuste versão das lib e atualização para nest 11

This commit is contained in:
JurTI-BR
2025-03-28 12:25:33 -03:00
parent 8af4b05f28
commit 9c77880d89
8 changed files with 1360 additions and 910 deletions

View File

@@ -6,8 +6,6 @@ import { OrdersPaymentModule } from './orders-payment/orders-payment.module';
/* eslint-disable prettier/prettier */
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { TypeOrmModule } from '@nestjs/typeorm';
import { typeOrmConfig, typeOrmPgConfig } from './core/configs/typeorm.config';
import { ProductsModule } from './products/products.module';
@@ -39,8 +37,8 @@ import { LogisticService } from './logistic/logistic.service';
TypeOrmModule.forRoot(typeOrmPgConfig),
],
controllers: [
OcorrencesController, AppController, LogisticController,],
OcorrencesController, LogisticController,],
providers: [
BaseService, AppService, LogisticService,],
BaseService, LogisticService,],
})
export class AppModule { }