拆分数据处理分类,新增编码加密、数学计算分类

This commit is contained in:
fofolee
2025-01-08 16:13:50 +08:00
parent 430466c38c
commit 8003497e71
18 changed files with 271 additions and 239 deletions

View File

@@ -7,6 +7,8 @@ import { otherCommands } from "./otherCommands";
import { simulateCommands } from "./simulateCommands";
import { controlCommands } from "./controlCommands";
import { uiCommands } from "./uiCommands";
import { codingCommands } from "./codingCommand";
import { mathCommands } from "./mathCommands";
export const commandCategories = [
fileCommands,
@@ -14,8 +16,10 @@ export const commandCategories = [
systemCommands,
notifyCommands,
dataCommands,
codingCommands,
controlCommands,
uiCommands,
simulateCommands,
mathCommands,
otherCommands,
];