mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-27 19:11:09 +00:00
8 lines
172 B
Rust
8 lines
172 B
Rust
![]() |
use lazy_static::lazy_static;
|
||
|
|
||
|
pub const HOST: &'static str = "0.0.0.0:3030";
|
||
|
|
||
|
lazy_static! {
|
||
|
pub static ref SIGN_UP_URL: String = format!("{}/user/register", HOST);
|
||
|
}
|