Nexus/pkg/http/api/check_ip.go
2024-10-19 22:36:33 +08:00

8 lines
121 B
Go

package api
import "github.com/gofiber/fiber/v2"
func getClientIP(c *fiber.Ctx) error {
return c.SendString(c.IP())
}