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,
];