git-subtree-dir: .claude/llm-functions git-subtree-split: 616d8d84c5565fdb66d8782ae5ba56d994bfa82a
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();
|
|
}
|