(resource: str = "Resource")
| 55 | |
| 56 | |
| 57 | def not_found(resource: str = "Resource"): |
| 58 | return error_response(f"{resource.upper()}_NOT_FOUND", f"{resource} not found", 404) |
| 59 | |
| 60 | |
| 61 | def invalid_status(message: str = "Invalid status for this operation"): |
no test coverage detected