/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
integration/inspector/src/chat/chat.module.ts
8 строк
215 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 { ChatService } from './chat.service'; import { ChatGateway } from './chat.gateway'; @Module({ providers: [ChatGateway, ChatService], }) export class ChatModule {}