11 lines
383 B
TypeScript
11 lines
383 B
TypeScript
import { Global, Module } from '@nestjs/common';
|
|
import { PlatformPrismaService } from '../prisma/platform-prisma.service';
|
|
import { TenantConnectionService } from './tenant-connection.service';
|
|
|
|
@Global()
|
|
@Module({
|
|
providers: [PlatformPrismaService, TenantConnectionService],
|
|
exports: [PlatformPrismaService, TenantConnectionService],
|
|
})
|
|
export class TenancyModule {}
|