import { forwardRef, Module } from "@nestjs/common"; import { AccountController } from "./account.controller"; import { AccountRepo } from "./account.repo"; import { AccountService } from "./account.service"; import { AuthModule } from 'src/middleware/auth/auth.module'; @Module({ imports: [forwardRef(() => AuthModule)], controllers: [AccountController], providers: [AccountService, AccountRepo], exports: [AccountService, AccountRepo] }) export class AccountModule {}