mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-14 21:27:20 +00:00
19 lines
471 B
TypeScript
19 lines
471 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { FunctionalityModules } from '../app.module';
|
|
import { CreateCommand, NameQuestion } from './commands/create';
|
|
import { ImportConfigCommand } from './commands/import';
|
|
import { RevertCommand, RunCommand } from './commands/run';
|
|
|
|
@Module({
|
|
imports: FunctionalityModules,
|
|
providers: [
|
|
NameQuestion,
|
|
CreateCommand,
|
|
RunCommand,
|
|
RevertCommand,
|
|
ImportConfigCommand,
|
|
],
|
|
})
|
|
export class CliAppModule {}
|