sejongbinary / binary-backend

Binary Backend Repository
1 stars 0 forks source link

๋กœ๊ทธ์ธ - main.ts #3

Open pgb0930 opened 3 weeks ago

pgb0930 commented 3 weeks ago

๐Ÿš… Issue ํ•œ ์ค„ ์š”์•ฝ

main.ts

๐Ÿคท Issue ์„ธ๋ถ€ ๋‚ด์šฉ

import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';

async function bootstrap() {
  const app = await NestFactory.create(AppModule);
  await app.listen(3000);
}
bootstrap();

โœจ ๊ธฐ๋Œ€ ๊ฒฐ๊ณผ

๐Ÿ“ธ ์Šคํฌ๋ฆฐ์ƒท

Jun9u commented 3 weeks ago

LGTM!