filthy_rich/
lib.rs

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