* feat: wip workspace health * feat: split structure and metadata check * feat: check default value structure health * feat: check targetColumnMap structure health * fix: composite types doesn't have default value properly defined * feat: check default value structure health * feat: check options structure health * fix: verbose option not working properly * fix: word issue * fix: tests * fix: remove console.log * fix: TRUE and FALSE instead of YES and NO * fix: fieldMetadataType instead of type
21 lines
784 B
TypeScript
21 lines
784 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { DatabaseCommandModule } from 'src/database/commands/database-command.module';
|
|
import { FetchWorkspaceMessagesCommandsModule } from 'src/workspace/messaging/commands/fetch-workspace-messages-commands.module';
|
|
import { WorkspaceHealthCommandModule } from 'src/workspace/workspace-health/commands/workspace-health-command.module';
|
|
|
|
import { AppModule } from './app.module';
|
|
|
|
import { WorkspaceSyncMetadataCommandsModule } from './workspace/workspace-sync-metadata/commands/workspace-sync-metadata-commands.module';
|
|
|
|
@Module({
|
|
imports: [
|
|
AppModule,
|
|
WorkspaceSyncMetadataCommandsModule,
|
|
DatabaseCommandModule,
|
|
FetchWorkspaceMessagesCommandsModule,
|
|
WorkspaceHealthCommandModule,
|
|
],
|
|
})
|
|
export class CommandModule {}
|