ba69435339
* Display maxUpdatedAt for each workspace Schema * Factorize functions * Add max update for public workspaces * Merge everything in a single json * Enrich results * Get from proper table * Update * Move to proper command file * Add a dry-run option * Remove workspaces from database * Fix DeleteWorkspace method * Add new option * Remove proper data when deleting workspace * Minor improvements
13 lines
372 B
TypeScript
13 lines
372 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { DatabaseCommandModule } from 'src/database/commands/database-command.module';
|
|
|
|
import { AppModule } from './app.module';
|
|
|
|
import { MetadataCommandModule } from './metadata/commands/metadata-command.module';
|
|
|
|
@Module({
|
|
imports: [AppModule, MetadataCommandModule, DatabaseCommandModule],
|
|
})
|
|
export class CommandModule {}
|