Files
schedtxt_auth/src/config/mod.rs
T
2026-05-31 16:11:09 -04:00

7 lines
125 B
Rust

const ADDRESS: &str = "0.0.0.0";
const PORT: &str = "9080";
pub fn get_full() -> String {
format!("{ADDRESS}:{PORT}")
}