feat: tool 添加 gin local

This commit is contained in:
zhaoyupeng
2025-07-04 10:27:44 +08:00
parent 002f5f15fb
commit 5df55a364d
2 changed files with 17 additions and 0 deletions

12
tool/gin.go Normal file
View File

@ -0,0 +1,12 @@
package tool
import "github.com/gin-gonic/gin"
func Local(c *gin.Context, key string) any {
data, ok := c.Get(key)
if !ok {
return nil
}
return data
}