File tree Expand file tree Collapse file tree
packages/cli/src/commands/config Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import type { Config } from "bailian-cli-core";
33import type { GlobalFlags } from "bailian-cli-core" ;
44import { BailianError } from "bailian-cli-core" ;
55import { ExitCode } from "bailian-cli-core" ;
6- import { loadCommandCatalog } from "../../load-commands.ts" ;
76
87/**
98 * Commands that are infrastructure/auth-related and not suitable as Agent tools.
@@ -23,6 +22,7 @@ export default defineCommand({
2322 ] ,
2423 examples : [ "bl config export-schema" , 'bl config export-schema --command "video generate"' ] ,
2524 async run ( config : Config , flags : GlobalFlags ) {
25+ const { loadCommandCatalog } = await import ( "../../load-commands.ts" ) ;
2626 const { commands } = await loadCommandCatalog ( ) ;
2727 const targetCommand = flags . command as string | undefined ;
2828
You can’t perform that action at this time.
0 commit comments