Nexus/pkg/internal/http/api/check_ip.go
2024-10-21 00:05:40 +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())
}