use axum::Router; use axum::routing::post; pub fn router() -> Router<()> { Router::new() .nest("/table", Router::new() .route("/", post(table)), ) } async fn table() { unimplemented!("Not yet implemented") }