8 lines
149 B
JavaScript
8 lines
149 B
JavaScript
|
|
/**
|
||
|
|
* Get the system info
|
||
|
|
*/
|
||
|
|
exports.get_ipinfo = async function () {
|
||
|
|
const res = await fetch("https://httpbin.org/ip")
|
||
|
|
return res.json();
|
||
|
|
}
|