feat: update ISP API

This commit is contained in:
thehrz 2024-08-20 13:44:00 +08:00
parent 063f32fcbb
commit 52bf41760c
Signed by: thehrz
GPG Key ID: C84CBCE7D5F88855

View File

@ -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
}