mirror of
https://github.com/danbulant/Shasha
synced 2026-05-22 05:28:46 +00:00
11 lines
No EOL
235 B
JavaScript
11 lines
No EOL
235 B
JavaScript
'use strict';
|
|
|
|
const { exec } = require("child_process");
|
|
const { execCB } = require("../functions");
|
|
|
|
module.exports = {
|
|
description: "Execute zsh terminal command",
|
|
run(client, arg) {
|
|
return exec(arg, execCB);
|
|
}
|
|
} |