diff --git a/src/web/mod.rs b/src/web/mod.rs index c13cb2c..2ed7e10 100644 --- a/src/web/mod.rs +++ b/src/web/mod.rs @@ -498,16 +498,6 @@ fn manage() -> result::Result> { Ok(Template::render("manage", context)) } -#[get("/upload")] -fn upload() -> result::Result> { - let context = templates::General { - version: env!("VERGEN_SEMVER").to_string(), - commit: env!("VERGEN_SHA_SHORT").to_string(), - }; - - Ok(Template::render("upload", context)) -} - #[get("/")] fn root() -> Template { let context = templates::General {