/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
integration/inspector/src/request-chain/request-chain.module.ts
11 строк
381 B
Kamil Myśliwiec
test: add inspector e2e tests, add deterministic uuid registry
29 ноя 2022, 11:56
Не верифицирован
29 ноя 2022, 11:56
95e8394
Код
Авторство
О чём код?
import { Module } from '@nestjs/common'; import { HelperModule } from './helper/helper.module'; import { RequestChainController } from './request-chain.controller'; import { RequestChainService } from './request-chain.service'; @Module({ imports: [HelperModule], providers: [RequestChainService], controllers: [RequestChainController], }) export class RequestChainModule {}