20 lines
327 B
JavaScript
Raw Normal View History

2022-11-09 17:04:48 +01:00
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"
]
2022-11-09 17:04:48 +01:00
},
},
};
export default widget;