Files
twenty/server/src/command.module.ts
Weiko acbcd2f162 Standard migration command (#2236)
* Add Standard Object migration commands

* rebase

* add sync-tenant-metadata command

* fix naming

* renaming command class names

* remove field deletion and use object cascade instead

---------

Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
2023-10-27 18:08:59 +02:00

11 lines
261 B
TypeScript

import { Module } from '@nestjs/common';
import { AppModule } from './app.module';
import { MetadataCommandModule } from './metadata/commands/metadata-command.module';
@Module({
imports: [AppModule, MetadataCommandModule],
})
export class CommandModule {}