Files
soaricarus_auth/src/config/mod.rs
T
2025-03-31 19:16:15 -04:00

11 lines
183 B
Rust

pub fn get_full() -> String {
get_address() + ":" + &get_port()
}
fn get_address() -> String {
String::from("0.0.0.0")
}
fn get_port() -> String {
String::from("3000")
}