/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
sample/31-graphql-federation-code-first/posts-application/src/main.ts
8 строк
208 B
Tony133
fix(): downgraded @apollo/subgraph and @apollo/gateway to version 2.2.3
23 июн 2023, 00:06
23 июн 2023, 00:06
37f1851
Код
Авторство
О чём код?
import { NestFactory } from '@nestjs/core'; import { AppModule } from './app.module'; async function bootstrap() { const app = await NestFactory.create(AppModule); await app.listen(3003); } bootstrap();