Nexus/pkg/internal/web/api/check_ip.go
LittleSheep 481404c4a2 🗑️ Clean up command related stuff
🚚 Move http package to web
2025-03-01 13:00:50 +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())
}