Skip to main content

filthy_rich/
lib.rs

1#[cfg(unix)]
2pub mod ipc;
3#[cfg(unix)]
4pub use ipc::DiscordIPC;
5#[cfg(unix)]
6mod socket;
7#[cfg(unix)]
8mod utils;
9
10#[cfg(not(unix))]
11compile_error!("This crate only supports Unix targets!");