This commit is contained in:
Martin Brodbeck 2025-01-07 11:23:04 +01:00
parent 76c938f1bf
commit 689ee4136e

View file

@ -41,7 +41,7 @@ async fn main() {
.route("/users/create", post(create_user))
.route("/users/auth", get(auth_user))
.route("/syncs/progress", put(update_progress))
.route("/syncs/progress/{documenti}", get(get_progress))
.route("/syncs/progress/{document}", get(get_progress))
.route("/healthcheck", get(healthcheck));
// run it with hyper on localhost:3003