zinit 0.3.9

Process supervisor with dependency management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! zinit client module - Client library and CLI interface for the zinit process supervisor.

pub mod client;
pub mod handle;
#[cfg(feature = "rhai")]
pub mod rhai;

pub mod cli;

#[cfg(feature = "tui")]
pub mod tui;

// Re-export main client types
pub use client::{XinetStatusFull, ZinitClient};
pub use handle::ZinitHandle;