(c *gin.Context, key constant.ContextKey)
| 55 | } |
| 56 | |
| 57 | func GetContextKeyString(c *gin.Context, key constant.ContextKey) string { |
| 58 | return c.GetString(string(key)) |
| 59 | } |
| 60 | |
| 61 | func GetContextKeyInt(c *gin.Context, key constant.ContextKey) int { |
| 62 | return c.GetInt(string(key)) |
no outgoing calls
no test coverage detected