mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-21 22:42:06 +00:00
Now that we have the `bin-shared` crate, it is easy to move the health-check functionality into there. That allows us to get rid of a crate which makes navigating the workspace a bit easier.
13 lines
337 B
Rust
13 lines
337 B
Rust
#[cfg(target_os = "linux")]
|
|
#[path = "network_changes/linux.rs"]
|
|
#[allow(clippy::unnecessary_wraps)]
|
|
mod imp;
|
|
|
|
#[cfg(target_os = "windows")]
|
|
#[path = "network_changes/windows.rs"]
|
|
#[allow(clippy::unnecessary_wraps)]
|
|
mod imp;
|
|
|
|
#[cfg(any(target_os = "windows", target_os = "linux"))]
|
|
pub use imp::{new_dns_notifier, new_network_notifier};
|