activitypub-federation-rust/examples/local_federation/axum/mod.rs
2023-03-02 00:19:10 +01:00

13 lines
348 B
Rust

use crate::error::Error;
use ::http::StatusCode;
use axum::response::{IntoResponse, Response};
#[allow(clippy::diverging_sub_expression, clippy::items_after_statements)]
pub mod http;
impl IntoResponse for Error {
fn into_response(self) -> Response {
(StatusCode::INTERNAL_SERVER_ERROR, format!("{}", self.0)).into_response()
}
}