1use crate::Server; 2 3impl From<Server> for axum::Router { 4 fn from(value: Server) -> Self { 5 value.inner 6 } 7}