Initial commit: Meshkee CMS API
NestJS backend with Prisma, Docker Compose for Postgres/Redis, and deploy docs for the production VM.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { AuthModule } from '../auth/auth.module';
|
||||
import { BusinessSettingsModule } from '../business-settings/business-settings.module';
|
||||
import { TenantModule } from '../tenant/tenant.module';
|
||||
import {
|
||||
ExpertReviewsController,
|
||||
PublicExpertReviewsController,
|
||||
} from './expert-reviews.controller';
|
||||
import { ExpertReviewsService } from './expert-reviews.service';
|
||||
|
||||
@Module({
|
||||
imports: [AuthModule, BusinessSettingsModule, TenantModule],
|
||||
controllers: [PublicExpertReviewsController, ExpertReviewsController],
|
||||
providers: [ExpertReviewsService],
|
||||
})
|
||||
export class ExpertReviewsModule {}
|
||||
Reference in New Issue
Block a user