Files
soaricarus_auth/src/config/mod.rs
T
phoenixandphoenix 473b4ec762 Cors support (#62)
Reviewed-on: phoenix/icarus_auth#62
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-10-10 20:32:29 +00: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("8001")
}