diff --git a/axum/src/routing/not_found.rs b/axum/src/routing/not_found.rs index ef02dec2..8c56d241 100644 --- a/axum/src/routing/not_found.rs +++ b/axum/src/routing/not_found.rs @@ -12,7 +12,7 @@ use tower_service::Service; /// This is used as the bottom service in a method router. You shouldn't have to /// use it manually. #[derive(Clone, Copy, Debug)] -pub(crate) struct NotFound; +pub(super) struct NotFound; impl Service> for NotFound where