mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-15 10:49:10 +08:00
30 lines
919 B
JavaScript
30 lines
919 B
JavaScript
import { fileCommands } from "./fileCommands";
|
|
import { networkCommands } from "./networkCommands";
|
|
import { systemCommands } from "./systemCommands";
|
|
import { notifyCommands } from "./notifyCommands";
|
|
import { dataCommands } from "./dataCommands";
|
|
import { otherCommands } from "./otherCommands";
|
|
import { simulateCommands } from "./simulateCommands";
|
|
import { controlCommands } from "./controlCommands";
|
|
import { uiCommands } from "./uiCommands";
|
|
import { codingCommands } from "./codingCommand";
|
|
import { mathCommands } from "./mathCommands";
|
|
import { userdataCommands } from "./userdataCommands";
|
|
import { utoolsCommands } from "./utoolsCommand";
|
|
|
|
export const commandCategories = [
|
|
fileCommands,
|
|
networkCommands,
|
|
systemCommands,
|
|
notifyCommands,
|
|
utoolsCommands,
|
|
dataCommands,
|
|
codingCommands,
|
|
controlCommands,
|
|
uiCommands,
|
|
simulateCommands,
|
|
mathCommands,
|
|
userdataCommands,
|
|
otherCommands,
|
|
];
|