(c *gin.Context, key constant.ContextKey)
| 163 | } |
| 164 | |
| 165 | func GetContextKeyString(c *gin.Context, key constant.ContextKey) string { |
| 166 | return c.GetString(string(key)) |
| 167 | } |
| 168 | |
| 169 | func GetContextKeyInt(c *gin.Context, key constant.ContextKey) int { |
| 170 | return c.GetInt(string(key)) |
no outgoing calls
no test coverage detected