first commit

This commit is contained in:
thuanle
2024-07-13 23:58:47 +07:00
parent 5a47b94c85
commit 4bb5ee09f0
23 changed files with 650316 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package api
import (
"github.com/gin-gonic/gin"
"net/http"
)
func HandleIp(c *gin.Context) {
c.String(http.StatusOK, c.ClientIP())
}