chore: update dependencies and remove unused test modules

This commit is contained in:
Andrew Phillips
2025-08-14 12:23:46 -03:00
committed by Andrew Phillips (aider)
parent 0abb76e785
commit 24d7c4742c
9 changed files with 601 additions and 601 deletions

View File

@@ -31,7 +31,7 @@ fn default_count() -> usize {
pub fn add_routes(app: axum::Router<AppState>) -> axum::Router<AppState> {
app
.route("/", axum::routing::get(list_items))
.route("/item/:id", axum::routing::get(show_item))
.route("/item/{item_id}", axum::routing::get(show_item))
}
async fn list_items(