8 lines
179 B
Rust
Raw Normal View History

2021-08-20 21:09:21 +08:00
use lazy_static::lazy_static;
pub const HOST: &'static str = "http://0.0.0.0:3030";
2021-08-20 21:09:21 +08:00
lazy_static! {
pub static ref SIGN_UP_URL: String = format!("{}/user/register", HOST);
}