dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_CLAuthModule cluster_CLAuthModule_exports cluster_CLAuthModule_providers cluster_CLAuthModule_imports CLParticipantModule CLParticipantModule CLAuthModule CLAuthModule CLParticipantModule->CLAuthModule CLAuthService CLAuthService CLAuthModule->CLAuthService CLAuthService CLAuthService CLAuthService->CLAuthModule

File

apps/recallassess/recallassess-api/src/api/client/auth/auth.module.ts

Providers

Controllers

Exports

import { Module } from "@nestjs/common";
import { JwtModule } from "@nestjs/jwt";
import { CLParticipantModule } from "../participant/participant.module";
import { CLAuthController } from "./auth.controller";
import { CLAuthService } from "./auth.service";

@Module({
  imports: [JwtModule.register({}), CLParticipantModule],
  controllers: [CLAuthController],
  providers: [CLAuthService],
  exports: [CLAuthService],
})
export class CLAuthModule {}

results matching ""

    No results matching ""