github-actions[bot]
Deploy Backend from GitHub Actions Commit: ca37b2a1c9dd5c702619ea7ae7b3260d2fb5663d
b185a6d | import { Module, forwardRef } from "@nestjs/common"; | |
| import { UsersService } from "./users.service"; | |
| import { UsersController } from "./users.controller"; | |
| import { AuthModule } from "../auth/auth.module"; | |
| ({ | |
| imports: [forwardRef(() => AuthModule)], | |
| controllers: [UsersController], | |
| providers: [UsersService], | |
| exports: [UsersService], | |
| }) | |
| export class UsersModule {} | |