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