2025-02-12 10:58:38 -05:00

20 lines
384 B
JavaScript

import genericProxyHandler from "utils/proxy/handlers/generic";
const widget = {
api: "{url}/{endpoint}" ,
proxyHandler: genericProxyHandler ,
mappings: {
"widget": {
endpoint: "widget/redis",
method: "GET",
headers: {
"Accept": "application/json",
"Accept-Content": "application/json",
},
},
},
};
export default widget;