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