* tsk-208: Moving config and endpoint code * tsk-208: Code formatting * tsk-208: Version bump * tsk-208: Accidentally changed port
8 lines
200 B
Rust
8 lines
200 B
Rust
/// 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";
|