src/issuer/configuration/webhook-endpoint/webhook-endpoint.module.ts
dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_WebhookEndpointModule cluster_WebhookEndpointModule_imports cluster_WebhookEndpointModule_exports cluster_WebhookEndpointModule_providers AuditLogModule AuditLogModule WebhookEndpointModule WebhookEndpointModule AuditLogModule->WebhookEndpointModule WebhookModule WebhookModule WebhookModule->WebhookEndpointModule WebhookEndpointService WebhookEndpointService WebhookEndpointModule->WebhookEndpointService WebhookEndpointService WebhookEndpointService WebhookEndpointService->WebhookEndpointModule
import { Module } from "@nestjs/common";
import { TypeOrmModule } from "@nestjs/typeorm";
import { AuditLogModule } from "../../../audit-log/audit-log.module";
import { WebhookModule } from "../../../webhook/webhook.module";
import { WebhookEndpointEntity } from "./entities/webhook-endpoint.entity";
import { WebhookEndpointController } from "./webhook-endpoint.controller";
import { WebhookEndpointService } from "./webhook-endpoint.service";

@Module({
    imports: [
        TypeOrmModule.forFeature([WebhookEndpointEntity]),
        AuditLogModule,
        WebhookModule,
    ],
    controllers: [WebhookEndpointController],
    providers: [WebhookEndpointService],
    exports: [WebhookEndpointService],
})
export class WebhookEndpointModule {}

results matching ""

    No results matching ""