ipv6-test-backend/internal/router/routes/ip/myip.go

11 lines
131 B
Go
Raw Normal View History

2024-08-17 08:31:47 +08:00
package ip
import (
"github.com/gin-gonic/gin"
"net/http"
)
func MyIP(c *gin.Context) {
c.JSON(http.StatusOK, c.ClientIP())
}