Using rust #2

Merged
phoenix merged 29 commits from v0.2.0 into main 2026-05-31 18:18:42 -04:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit 26842175fe - Show all commits
+6
View File
@@ -0,0 +1,6 @@
const ADDRESS: &str = "0.0.0.0";
const PORT: &str = "9080";
pub fn get_full() -> String {
format!("{ADDRESS}:{PORT}")
}
+2
View File
@@ -1,3 +1,5 @@
pub mod config;
pub mod db;
#[tokio::main]