UNPKG
rdtool
Version:
latest (1.0.5)
1.0.5
1.0.4
A simple Node.js-based remote deployment tool that makes deployments easier with config files.
rdtool
/
src
/
exec-plugins
/
remote.js
10 lines
(8 loc)
•
201 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const { execServerCommand } = require(
"../tools"
);
function
exec
(client, config,
command
) {
return
execServerCommand(client,
command
); } module.exports = { name:
"remote"
,
exec
}