7b9175a4a4
Revert "Convert metadata tables to camelCase (#2400)"
This reverts commit 1cf08c797f.
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 {}
|