13 lines
351 B
TypeScript
13 lines
351 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { DataSourceModule } from 'src/metadata/data-source/data-source.module';
|
|
|
|
import { TenantMigrationService } from './tenant-migration.service';
|
|
|
|
@Module({
|
|
imports: [DataSourceModule],
|
|
exports: [TenantMigrationService],
|
|
providers: [TenantMigrationService],
|
|
})
|
|
export class TenantMigrationModule {}
|