curl --request DELETE \
--url http://localhost:8000/api/v1/bug-reports/{bug_report_id} \
--header 'Authorization: Bearer <token>'{}Delete a bug report by its ID. Requires superuser privileges.
Args: bug_report_id (int): The ID of the bug report to delete. _admin_user (User): The current superuser.
Returns: dict: Confirmation message.
Raises: HTTPException: 404 if the bug report is not found.
curl --request DELETE \
--url http://localhost:8000/api/v1/bug-reports/{bug_report_id} \
--header 'Authorization: Bearer <token>'{}