From 49d7d2d73dd1a2afed1a1eb13a35d5d87aee1cd4 Mon Sep 17 00:00:00 2001 From: yggverse Date: Sun, 10 Aug 2025 05:29:31 +0300 Subject: [PATCH] reorder the routes --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 8583527..b176b6e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -225,7 +225,7 @@ fn rocket() -> _ { version: env!("CARGO_PKG_VERSION").into(), }) .mount("/", rocket::fs::FileServer::from(config.public)) - .mount("/", routes![index, info, rss]) + .mount("/", routes![index, rss, info]) } /// Public placeholder text for the `Status::InternalServerError`