mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
12 lines
377 B
TypeScript
12 lines
377 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { AppModule as BusinessAppModule } from '../app.module';
|
|
import { CreateCommand, NameQuestion } from './commands/create';
|
|
import { RevertCommand, RunCommand } from './commands/run';
|
|
|
|
@Module({
|
|
imports: [BusinessAppModule],
|
|
providers: [NameQuestion, CreateCommand, RunCommand, RevertCommand],
|
|
})
|
|
export class CliAppModule {}
|