mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-18 10:39:49 +00:00
14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
import genericProxyHandler from "utils/proxy/handlers/generic";
|
|
|
|
const widget = {
|
|
api: "{url}/api/v2.0/{endpoint}?apikey={key}&configured=true",
|
|
proxyHandler: genericProxyHandler,
|
|
|
|
mappings: {
|
|
indexers: {
|
|
endpoint: "indexers",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|