mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 01:56:27 +08:00
d3ec008b0c
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Migration and config commands now feature interactive prompts for required inputs. * **Bug Fixes** * Enhanced error handling in CLI operations. * **Chores** * Updated GraphQL Code Generator toolchain to v6. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
14 lines
490 B
TypeScript
14 lines
490 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { FunctionalityModules } from '../app.module';
|
|
import { IndexerModule } from '../plugins/indexer';
|
|
import { CreateCommand } from './commands/create';
|
|
import { ImportConfigCommand } from './commands/import';
|
|
import { RevertCommand, RunCommand } from './commands/run';
|
|
|
|
@Module({
|
|
imports: [...FunctionalityModules, IndexerModule],
|
|
providers: [CreateCommand, RunCommand, RevertCommand, ImportConfigCommand],
|
|
})
|
|
export class CliAppModule {}
|