14 lines
190 B
Go
14 lines
190 B
Go
package ip
|
|
|
|
import (
|
|
"91porn-server/common/constant"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// RealIP 获取真实IP
|
|
func RealIP(c *gin.Context) {
|
|
ip := c.ClientIP()
|
|
c.Set(constant.CtxIP, ip)
|
|
}
|