From 8cd646da99e4eb6325459fa35cff93d162193c94 Mon Sep 17 00:00:00 2001 From: Mukesh Singh Date: Thu, 5 Oct 2023 03:00:32 +0530 Subject: [PATCH] stale constants removed --- src/constants/mod.rs | 0 src/main.rs | 5 ----- 2 files changed, 5 deletions(-) delete mode 100644 src/constants/mod.rs diff --git a/src/constants/mod.rs b/src/constants/mod.rs deleted file mode 100644 index e69de29..0000000 diff --git a/src/main.rs b/src/main.rs index 091146f..0fc644a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,11 +9,6 @@ use project::{index as project_index}; #[macro_use] extern crate rocket; -#[get("/")] -fn index() -> &'static str { - "Hello World! I'm Shield" -} - #[shuttle_runtime::main] async fn rocket() -> shuttle_rocket::ShuttleRocket { let rocket = rocket::build()