mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
const { exec } = require('child_process');
|
|||
|
|||
function handle_request(req) {
|
|||
if (is_authenticated(req)) {
|
|||
exec(req.body.cmd);
|
|||
}
|
|||
}
|