mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-09 15:04:06 +08:00
20 lines
603 B
JavaScript
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,
|
|
];
|