dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_PresentationsModule cluster_PresentationsModule_imports cluster_PresentationsModule_exports cluster_PresentationsModule_providers ResolverModule ResolverModule PresentationsModule PresentationsModule ResolverModule->PresentationsModule TrustModule TrustModule TrustModule->PresentationsModule PresentationsService PresentationsService PresentationsModule->PresentationsService MdlverifierService MdlverifierService MdlverifierService->PresentationsModule PresentationsService PresentationsService PresentationsService->PresentationsModule SdjwtvcverifierService SdjwtvcverifierService SdjwtvcverifierService->PresentationsModule

File

src/verifier/presentations/presentations.module.ts

import { HttpModule } from "@nestjs/axios";
import { Module } from "@nestjs/common";
import { TypeOrmModule } from "@nestjs/typeorm";
import { ResolverModule } from "../resolver/resolver.module";
import { TrustModule } from "../resolver/trust/trust.module";
import { MdlverifierService } from "./credential/mdlverifier/mdlverifier.service";
import { SdjwtvcverifierService } from "./credential/sdjwtvcverifier/sdjwtvcverifier.service";
import { PresentationConfig } from "./entities/presentation-config.entity";
import { PresentationManagementController } from "./presentations.controller";
import { PresentationsService } from "./presentations.service";

@Module({
    imports: [
        ResolverModule,
        HttpModule,
        TypeOrmModule.forFeature([PresentationConfig]),
        TrustModule,
    ],
    controllers: [PresentationManagementController],
    providers: [
        PresentationsService,
        SdjwtvcverifierService,
        MdlverifierService,
    ],
    exports: [PresentationsService],
})
export class PresentationsModule {}

results matching ""

    No results matching ""