2021-08-20 21:09:21 +08:00
|
|
|
use lazy_static::lazy_static;
|
|
|
|
|
2021-08-22 15:32:48 +08:00
|
|
|
pub const HOST: &'static str = "http://localhost:8000";
|
2021-08-20 21:09:21 +08:00
|
|
|
|
|
|
|
lazy_static! {
|
|
|
|
pub static ref SIGN_UP_URL: String = format!("{}/user/register", HOST);
|
|
|
|
}
|