(c *gin.Context, key constant.ContextKey)
| 167 | } |
| 168 | |
| 169 | func GetContextKeyInt(c *gin.Context, key constant.ContextKey) int { |
| 170 | return c.GetInt(string(key)) |
| 171 | } |
| 172 | |
| 173 | func GetContextKeyBool(c *gin.Context, key constant.ContextKey) bool { |
| 174 | return c.GetBool(string(key)) |
no outgoing calls
no test coverage detected