This repository has been archived on 2024-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
awesome-xlabs/launcher/localappdata/xlabs/data/launcher-ui/js/command.js
2023-08-13 17:58:51 -04:00

16 lines
378 B
JavaScript

window.executeCommand = function(command, data) {
var object = {
command: command,
data: data || null,
}
return fetch("/command", {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify(object)
}).then(data => data.json());
};