stockadvisor / api /src /reports /reports.module.ts
Bibhu Mishra
Add GitHub Actions CI/CD, HF Space deployment, market hours guard, and static serving
abc493d
Raw
History Blame Contribute Delete
503 Bytes
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import { AnalystReport } from '../common/entities/analyst-report.entity';
import { AuthModule } from '../auth/auth.module';
import { ReportsController } from './reports.controller';
import { ReportsService } from './reports.service';
@Module({
imports: [TypeOrmModule.forFeature([AnalystReport]), AuthModule],
controllers: [ReportsController],
providers: [ReportsService],
})
export class ReportsModule {}