dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_WebhookModule cluster_WebhookModule_providers cluster_WebhookModule_exports WebhookService WebhookService WebhookModule WebhookModule WebhookModule->WebhookService WebhookService WebhookService WebhookService->WebhookModule

File

src/webhooks/webhook.module.ts

Providers

Controllers

Exports

import { Global, Module } from '@nestjs/common';
import { WebhookController } from './webhook.controller';
import { WebhookService } from './webhook.service';

@Global()
@Module({
  controllers: [WebhookController],
  providers: [WebhookService],
  exports: [WebhookService],
})
export class WebhookModule {}

results matching ""

    No results matching ""