Spaces:
Running
Running
Bibhu Mishra
Add GitHub Actions CI/CD, HF Space deployment, market hours guard, and static serving
abc493d | import { Module } from '@nestjs/common'; | |
| import { TypeOrmModule } from '@nestjs/typeorm'; | |
| import { User } from '../common/entities/user.entity'; | |
| import { AuthModule } from '../auth/auth.module'; | |
| import { UsersController } from './users.controller'; | |
| import { UsersService } from './users.service'; | |
| ({ | |
| imports: [TypeOrmModule.forFeature([User]), AuthModule], | |
| controllers: [UsersController], | |
| providers: [UsersService], | |
| }) | |
| export class UsersModule {} | |