add auth service to monorepo

This commit is contained in:
Ammar Qaffaf
2024-02-12 23:50:44 +03:00
parent 220261bec9
commit 117c42d034
19 changed files with 152 additions and 13 deletions

View File

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