/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
apps/webhook/src/webhooks/webhooks.module.ts
14 строк
489 B
Adam Chmara
chore(root): apply biome formatter & linter fixes NV-6436 (#8838)
31 июл 2025, 14:59
Не верифицирован
31 июл 2025, 14:59
855fb8f
Код
Авторство
О чём код?
import { MiddlewareConsumer, Module, NestModule } from '@nestjs/common'; import { SharedModule } from '../shared/shared.module'; import { USE_CASES } from './usecases'; import { WebhooksController } from './webhooks.controller'; @Module({ imports: [SharedModule], providers: [...USE_CASES], exports: [...USE_CASES], controllers: [WebhooksController], }) export class WebhooksModule implements NestModule { configure(consumer: MiddlewareConsumer): MiddlewareConsumer | void {} }