ipv6-test-backend/internal/router/routes/ip/myip.go
2024-08-17 08:31:47 +08:00

11 lines
131 B
Go

package ip
import (
"github.com/gin-gonic/gin"
"net/http"
)
func MyIP(c *gin.Context) {
c.JSON(http.StatusOK, c.ClientIP())
}