radicle_systemd/
lib.rs

1//! Library for interaction with systemd, specialized for Radicle.
2
3#[cfg(all(feature = "journal", target_os = "linux"))]
4pub mod journal;
5
6#[cfg(all(feature = "listen", unix))]
7pub mod listen;