proxmox/proxmox-systemd/src/lib.rs
Wolfgang Bumiller ab41d326e4 introduce proxmox-systemd crate
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2024-07-24 14:25:50 +02:00

10 lines
176 B
Rust

//! Systemd communication.
pub(crate) mod sys;
mod escape;
pub use escape::{escape_unit, unescape_unit, unescape_unit_path, UnescapeError};
pub mod journal;
pub mod notify;