Code changes

This commit is contained in:
2026-06-13 15:07:59 -04:00
parent cf1a637432
commit 7de08b0688
+15
View File
@@ -1 +1,16 @@
pub mod endpoints {
pub const ROOT: &str = "/";
pub const ADD_CONTACT: &str = "/api/v1/contact/new";
}
pub mod response {
pub const SUCCESSFUL: &str = "SUCCESSFUL";
}
/// Basic handler that responds with a static string
pub async fn root() -> &'static str {
"Hello, World!"
}
pub mod contact {}