mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
9 lines
251 B
Rust
9 lines
251 B
Rust
use lazy_static::lazy_static;
|
|
|
|
pub const HOST: &'static str = "http://localhost:8000";
|
|
|
|
lazy_static! {
|
|
pub static ref SIGN_UP_URL: String = format!("{}/api/register", HOST);
|
|
pub static ref SIGN_IN_URL: String = format!("{}/api/auth", HOST);
|
|
}
|