mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-15 19:08:13 +01:00
15 lines
251 B
JavaScript
15 lines
251 B
JavaScript
![]() |
import genericProxyHandler from "utils/proxy/handlers/generic";
|
||
|
|
||
|
const widget = {
|
||
|
api: "{url}/{endpoint}",
|
||
|
proxyHandler: genericProxyHandler,
|
||
|
|
||
|
mappings: {
|
||
|
"lineup.json": {
|
||
|
endpoint: "lineup.json",
|
||
|
}
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default widget;
|