Files
backend/src/main.ts
Ammar Qaffaf 6c861f88e8 initial commit
2024-02-12 23:28:26 +03:00

9 lines
208 B
TypeScript

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(3000);
}
bootstrap();