package api import ( "github.com/gin-gonic/gin" "net/http" ) func HandleIp(c *gin.Context) { c.String(http.StatusOK, c.ClientIP()) }