2023-05-31 07:26:11 +03:00
|
|
|
use crate::errors::Web3ProxyError;
|
|
|
|
use axum::response::{IntoResponse, Response};
|
2022-06-16 05:53:37 +03:00
|
|
|
|
2023-05-31 02:32:34 +03:00
|
|
|
#[inline]
|
2022-08-10 05:37:34 +03:00
|
|
|
pub async fn handler_404() -> Response {
|
2023-03-17 05:38:11 +03:00
|
|
|
Web3ProxyError::NotFound.into_response()
|
2022-06-05 22:58:47 +03:00
|
|
|
}
|