Adding caller code

This commit is contained in:
2026-05-31 17:25:05 -04:00
parent 6713508de9
commit 776740e087
3 changed files with 221 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
pub mod common;
pub mod register;
pub mod endpoints {
pub const ROOT: &str = "/";
pub const REGISTER: &str = "/api/v2/register";
pub const DBTEST: &str = "/api/v2/test/db";
}