housekeeping(cli): move DEFAULT_SERVER_PORT upper to exports scope

This commit is contained in:
CleverWild
2026-04-03 01:37:12 +02:00
parent 2fb5bb3d84
commit d593eedf01
2 changed files with 12 additions and 7 deletions

View File

@@ -31,6 +31,7 @@ pub struct ClientMetadata {
}
pub static BOOTSTRAP_PATH: &str = "bootstrap_token";
pub const DEFAULT_SERVER_PORT: u16 = 50051;
static HOME_OVERRIDE: LazyLock<RwLock<Option<PathBuf>>> = LazyLock::new(|| RwLock::new(None));
pub fn set_home_path_override(path: Option<PathBuf>) -> Result<(), std::io::Error> {