(c *gin.Context, key constant.ContextKey)
| 71 | } |
| 72 | |
| 73 | func GetContextKeyStringMap(c *gin.Context, key constant.ContextKey) map[string]any { |
| 74 | return c.GetStringMap(string(key)) |
| 75 | } |
| 76 | |
| 77 | func GetContextKeyTime(c *gin.Context, key constant.ContextKey) time.Time { |
| 78 | return c.GetTime(string(key)) |
no outgoing calls
no test coverage detected