修改端口号

main
amuliang 2023-08-04 00:31:38 +08:00
parent bc29110981
commit f4fc5321a8
1 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ const server = http.createServer(async (req, res) => {
res.end(JSON.stringify(result));
});
server.listen(5000, () => {
console.log("server running at prot 5000");
server.listen(5750, () => {
console.log("server running at prot 5750");
});