apps/recallassess/recallassess-api/src/api/client/company-profile/company-profile.module.ts
import { Module } from "@nestjs/common";
import { CLCompanyProfileController } from "./company-profile.controller";
import { CLCompanyProfileService } from "./company-profile.service";
@Module({
controllers: [CLCompanyProfileController],
providers: [CLCompanyProfileService],
exports: [CLCompanyProfileService],
})
export class CLCompanyProfileModule {}