From b13ce0e7957869b9cb262e0ec17c9dec44dcc104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BC=96=E7=A0=81=E7=8C=BF?= Date: Tue, 9 Sep 2025 23:40:13 +0800 Subject: [PATCH] 222333 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 36af2db..0740e20 100644 --- a/index.js +++ b/index.js @@ -14,7 +14,7 @@ app.use((req, res, next) => { next(); }); -// 提供接口,查询ubuntu server上的ipv6地址,处理字符串后,序列化为json返回 +// 提供接口,查询ubuntu server上的ipv6地址,处理字符串后,序列化为json返回. app.get('/ip', async (req, res) => { let output = execSync(command, { encoding: "utf8" }); res.json(await ip.parseNetworkInfo(output))