Files
firezone/rust/headless-client/src/macos.rs
Thomas Eizinger 6114bb274f chore(rust): make most of the Rust code compile on MacOS (#8924)
When working on the Rust code of Firezone from a MacOS computer, it is
useful to have pretty much all of the code at least compile to ensure
detect problems early. Eventually, once we target features like a
headless MacOS client, some of these stubs will actually be filled in an
be functional.
2025-04-29 11:20:09 +00:00

16 lines
334 B
Rust

use std::path::{Path, PathBuf};
use anyhow::{Result, bail};
pub(crate) fn check_token_permissions(_path: &Path) -> Result<()> {
bail!("Not implemented")
}
pub(crate) fn default_token_path() -> PathBuf {
PathBuf::from("/etc/dummy")
}
pub(crate) fn notify_service_controller() -> Result<()> {
bail!("Not implemented")
}