(c *gin.Context, key constant.ContextKey, value any)
| 47 | } |
| 48 | |
| 49 | func SetContextKey(c *gin.Context, key constant.ContextKey, value any) { |
| 50 | c.Set(string(key), value) |
| 51 | } |
| 52 | |
| 53 | func GetContextKey(c *gin.Context, key constant.ContextKey) (any, bool) { |
| 54 | return c.Get(string(key)) |
no outgoing calls
no test coverage detected