From 52bf41760c3beec725c35589003fa341f1f22d85 Mon Sep 17 00:00:00 2001 From: thehrz Date: Tue, 20 Aug 2024 13:44:00 +0800 Subject: [PATCH] feat: update ISP API --- internal/router/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/router/router.go b/internal/router/router.go index 5223038..483307a 100644 --- a/internal/router/router.go +++ b/internal/router/router.go @@ -12,7 +12,7 @@ func Register() *gin.Engine { ipGroup := g.Group("ip") ipGroup.GET("myip", ip.MyIP) - ipGroup.GET("isp", ip.ISP) + ipGroup.POST("isp", ip.ISP) return g }