mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
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.
16 lines
334 B
Rust
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")
|
|
}
|