First one #8

Merged
phoenix merged 42 commits from get_it_going into v0.2.0 2026-06-13 19:49:15 -04:00
Showing only changes of commit 7de08b0688 - Show all commits
+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 {}