sinka/api/src/tenancy/tenancy.module.ts
2026-09-16 04:57:09 +00:00

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 {}