From 13089cb459e390de9c58181a13e8ceff5898a22d Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Wed, 12 Mar 2025 14:33:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20router.go?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router.go b/router.go index 513e73f..4751f08 100644 --- a/router.go +++ b/router.go @@ -27,6 +27,6 @@ func startRouter() { gitEngine := ginServer.Group("/git") gitEngine.GET("/pull", restart.PullCodeHandler) gitEngine.GET("/build", restart.BuildBotHandler) - gitEngine.GET("/restart", restart.RestartBotHandler) + // gitEngine.GET("/restart", restart.RestartBotHandler) go ginServer.Run(":3434") }