initial: standalone repo from monorepo split
This commit is contained in:
12
src/support/support.module.ts
Normal file
12
src/support/support.module.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { SupportController } from './support.controller';
|
||||
import { SupportService } from './support.service';
|
||||
import { AdminPrismaModule } from '../prisma/admin-prisma.module';
|
||||
import { TenantPrismaModule } from '../prisma/tenant-prisma.module';
|
||||
|
||||
@Module({
|
||||
imports: [AdminPrismaModule, TenantPrismaModule],
|
||||
controllers: [SupportController],
|
||||
providers: [SupportService],
|
||||
})
|
||||
export class SupportModule {}
|
||||
Reference in New Issue
Block a user