tsk-208: Moving config and endpoint code (#236)

* tsk-208: Moving config and endpoint code

* tsk-208: Code formatting

* tsk-208: Version bump

* tsk-208: Accidentally changed port
This commit was merged in pull request #236.
This commit is contained in:
KD
2025-11-01 14:57:40 -04:00
committed by GitHub
parent f859eaf0a2
commit 7940527418
6 changed files with 22 additions and 26 deletions
+7
View File
@@ -0,0 +1,7 @@
/// Full hosting address that the application will be broadcasting
pub fn get_full() -> String {
format!("{ADDRESS}:{PORT}")
}
pub const ADDRESS: &str = "0.0.0.0";
pub const PORT: &str = "8000";
+1
View File
@@ -0,0 +1 @@
pub mod host;