2021-08-20 21:09:21 +08:00
|
|
|
use lazy_static::lazy_static;
|
|
|
|
|
2021-08-21 12:11:33 +08:00
|
|
|
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);
|
|
|
|
}
|