2024-12-31 15:54:55 +08:00

20 lines
603 B
JavaScript

import { fileCommands } from "./fileCommands";
import { networkCommands } from "./networkCommands";
import { systemCommands } from "./systemCommands";
import { notifyCommands } from "./notifyCommands";
import { textProcessingCommands } from "./textProcessingCommands";
import { otherCommands } from "./otherCommands";
import { keyCommands } from "./keyCommands";
import { controlCommands } from "./controlCommands";
export const commandCategories = [
fileCommands,
networkCommands,
systemCommands,
notifyCommands,
textProcessingCommands,
controlCommands,
otherCommands,
keyCommands,
];