14 lines
246 B
Rust
Raw Normal View History

2024-06-05 22:09:12 +02:00
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")
}