mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-08-01 00:49:50 +08:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
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";
|
|
import { screenCommands } from "./screenCommands";
|
|
import { audioCommands } from "./audioCommands";
|
|
import { imageCommands } from "./imageCommands";
|
|
|
|
export const commandCategories = [
|
|
fileCommands,
|
|
networkCommands,
|
|
systemCommands,
|
|
audioCommands,
|
|
imageCommands,
|
|
notifyCommands,
|
|
utoolsCommands,
|
|
dataCommands,
|
|
codingCommands,
|
|
controlCommands,
|
|
uiCommands,
|
|
simulateCommands,
|
|
mathCommands,
|
|
userdataCommands,
|
|
screenCommands,
|
|
otherCommands,
|
|
];
|