2025-01-15 01:33:28 +08:00

22 lines
482 B
JavaScript

const window = require("./window");
const sendmessage = require("./sendmessage");
const monitor = require("./monitor");
const process = require("./process");
const registry = require("./registry");
const service = require("./service");
const software = require("./software");
const utils = require("./utils");
const automation = require("./automation");
module.exports = {
window,
sendmessage,
monitor,
process,
registry,
service,
software,
utils,
automation,
};