/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
integration/microservices/src/main.ts
8 строк
229 B
Kamil Myśliwiec
style: address integration tests lint errors
26 ноя 2024, 11:39
Не верифицирован
26 ноя 2024, 11:39
236b633
Код
Авторство
О чём код?
import { NestFactory } from '@nestjs/core'; import { ApplicationModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(ApplicationModule); await app.listen(3000); } void bootstrap();