(c *gin.Context, statusCode int, code int, description string)
| 19 | } |
| 20 | |
| 21 | func abortWithMidjourneyMessage(c *gin.Context, statusCode int, code int, description string) { |
| 22 | c.JSON(statusCode, gin.H{ |
| 23 | "description": description, |
| 24 | "type": "new_api_error", |
| 25 | "code": code, |
| 26 | }) |
| 27 | c.Abort() |
| 28 | common.LogError(c.Request.Context(), description) |
| 29 | } |
nothing calls this directly
no test coverage detected