HollowPS_Custom_levels/sdkserver/src/services/errors.rs
2024-03-19 08:30:08 +03:00

7 lines
207 B
Rust

use axum::http::{StatusCode, Uri};
use axum::response::IntoResponse;
pub async fn not_found(uri: Uri) -> impl IntoResponse {
tracing::warn!("unhandled http request: {uri}");
StatusCode::NOT_FOUND
}