2023-02-11 05:05:37 -08:00
|
|
|
use crate::error::Error;
|
|
|
|
|
use ::http::StatusCode;
|
|
|
|
|
use axum::response::{IntoResponse, Response};
|
|
|
|
|
|
2023-03-01 15:19:10 -08:00
|
|
|
#[allow(clippy::diverging_sub_expression, clippy::items_after_statements)]
|
2023-02-11 05:05:37 -08:00
|
|
|
pub mod http;
|
|
|
|
|
|
|
|
|
|
impl IntoResponse for Error {
|
|
|
|
|
fn into_response(self) -> Response {
|
|
|
|
|
(StatusCode::INTERNAL_SERVER_ERROR, format!("{}", self.0)).into_response()
|
|
|
|
|
}
|
|
|
|
|
}
|