Files
twenty_crm/server/src/command.module.ts
Weiko 04c618284f Convert metadata tables to camel_case (#2420)
* Convert metadata tables to camelcase

* refactor folder structure

* rename datasourcemetadata

* regenerate metadata schema

* rename dataSourceMetadata to dataSource
2023-11-10 15:33:25 +01:00

19 lines
585 B
TypeScript

import { Module } from '@nestjs/common';
import { DatabaseCommandModule } from 'src/database/commands/database-command.module';
import { AppModule } from './app.module';
import { TenantManagerCommandsModule } from './tenant-manager/commands/tenant-manager-commands.module';
import { TenantMigrationRunnerCommandsModule } from './tenant-migration-runner/commands/tenant-migration-runner-commands.module';
@Module({
imports: [
AppModule,
TenantMigrationRunnerCommandsModule,
TenantManagerCommandsModule,
DatabaseCommandModule,
],
})
export class CommandModule {}