refactor: migrate item categories to nestjs

This commit is contained in:
Ahmed Bouhuolia
2024-12-20 10:40:35 +02:00
parent 83dfaa00fd
commit 1f32a7c59a
18 changed files with 128 additions and 22 deletions

View File

@@ -1,7 +1,8 @@
import { NestFactory } from '@nestjs/core';
import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger';
import { AppModule } from './modules/App/App.module';
import { ClsMiddleware } from 'nestjs-cls';
import { AppModule } from './modules/App/App.module';
import './utils/moment-mysql';
async function bootstrap() {
const app = await NestFactory.create(AppModule);