]> git.proxmox.com Git - pve-docs.git/blame - api-viewer/PVEAPI.js
build api-viewer from widget-toolkit-dev
[pve-docs.git] / api-viewer / PVEAPI.js
CommitLineData
37d44f8e
DC
1var clicmdhash = {
2 GET: 'get',
3 POST: 'create',
4 PUT: 'set',
5 DELETE: 'delete'
6};
7
8function cliusage(method, path) {
9 return `<tr><td>&nbsp;</td></td><tr><td>CLI:</td><td>pvesh ${clicmdhash[method]} ${path}</td></tr></table>`;
61568a65 10}