mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-11-26 08:04:53 +00:00
9 lines
211 B
TypeScript
9 lines
211 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { AuthModule } from './auth.module';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(AuthModule);
|
|
await app.listen(7001);
|
|
}
|
|
bootstrap();
|