15 lines
246 B
JavaScript
Raw Normal View History

import genericProxyHandler from "utils/proxy/handlers/generic";
const widget = {
api: "{url}/control/{endpoint}",
proxyHandler: genericProxyHandler,
mappings: {
stats: {
endpoint: "stats",
},
},
};
export default widget;