From 326fc7cf50ac9df89f5bd0bdde3f099f65aa8ee5 Mon Sep 17 00:00:00 2001 From: liudongqi Date: Fri, 13 Sep 2024 16:53:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/app.js b/app.js index 859f77f..661001d 100644 --- a/app.js +++ b/app.js @@ -3,7 +3,6 @@ const express = require('express'); const IpUtil = require('./utils/IpUtil'); const rs6 = require("./routes/Rs6"); const sm4 = require("./routes/Sm4"); -const cookiekey = require("./routes/cookiekey"); // 读取环境变量 const port = process.env.PORT || 9081; @@ -28,7 +27,6 @@ app.use(express.urlencoded({limit: '10mb', extended: true})); /* 配置框架环境 E */ app.use("/rs", rs6); app.use("/sm", sm4); -app.use("/cookie", cookiekey); app.listen(port, "0.0.0.0", () => { const ips = IpUtil.getLocalIPs();