mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-06 21:57:48 +01:00
18 lines
297 B
JavaScript
18 lines
297 B
JavaScript
import genericProxyHandler from "utils/proxy/handlers/generic";
|
|
|
|
const widget = {
|
|
api: "{url}/{endpoint}",
|
|
proxyHandler: genericProxyHandler,
|
|
|
|
mappings: {
|
|
lineup: {
|
|
endpoint: "lineup.json",
|
|
},
|
|
status: {
|
|
endpoint: "status.json",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|