mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
16 lines
296 B
JavaScript
16 lines
296 B
JavaScript
import genericProxyHandler from "utils/proxy/handlers/generic";
|
|
|
|
const widget = {
|
|
api: "{url}/v1/{endpoint}",
|
|
proxyHandler: genericProxyHandler,
|
|
|
|
mappings: {
|
|
ip: {
|
|
endpoint: "publicip/ip",
|
|
validate: ["public_ip", "region", "country"],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default widget;
|