(c *gin.Context, error_code int, err error)
| 42 | } |
| 43 | |
| 44 | func errorResp(c *gin.Context, error_code int, err error) { |
| 45 | c.JSON(error_code, ErrorResponse{ |
| 46 | Message: err.Error(), |
| 47 | }) |
| 48 | } |
| 49 | |
| 50 | func healthz(c *gin.Context) { |
| 51 | platforms := make([]string, 0) |
no outgoing calls
no test coverage detected