8 lines
180 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://localhost:8000";
2021-08-20 21:09:21 +08:00
lazy_static! {
2021-08-23 18:39:10 +08:00
pub static ref SIGN_UP_URL: String = format!("{}/api/register", HOST);
2021-08-20 21:09:21 +08:00
}