编排配置文件优化

This commit is contained in:
fofolee
2024-12-30 09:16:12 +08:00
parent c94256c14d
commit dfc1c7e2e3
13 changed files with 342 additions and 209 deletions

View File

@@ -0,0 +1,17 @@
import { fileCommands } from "./fileCommands";
import { networkCommands } from "./networkCommands";
import { systemCommands } from "./systemCommands";
import { notifyCommands } from "./notifyCommands";
import { encodeCommands } from "./encodeCommands";
import { otherCommands } from "./otherCommands";
import { keyCommands } from "./keyCommands";
export const commandCategories = [
fileCommands,
networkCommands,
systemCommands,
notifyCommands,
encodeCommands,
otherCommands,
keyCommands,
];