20 lines
384 B
JavaScript
Raw Normal View History

2025-01-22 10:53:58 -05:00
import genericProxyHandler from "utils/proxy/handlers/generic";
const widget = {
api: "{url}/{endpoint}" ,
proxyHandler: genericProxyHandler ,
mappings: {
"widget": {
2025-02-12 10:58:38 -05:00
endpoint: "widget/redis",
2025-01-22 10:53:58 -05:00
method: "GET",
headers: {
"Accept": "application/json",
"Accept-Content": "application/json",
},
},
},
};
export default widget;