(c *gin.Context)
| 26 | } |
| 27 | |
| 28 | func GetLogFromCtx(c *gin.Context) *zap.Logger { |
| 29 | logWithCid := c.Request.Context().Value(STRING_LOG).(*zap.Logger) |
| 30 | return logWithCid |
| 31 | } |
| 32 | |
| 33 | func ConvertAnyToStr(input any) (string, error) { |
| 34 | converted := "" |
no test coverage detected