systemd-jp 0.1.1

Rust interface to systemd management API via dbus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate dbus;

mod systemd_connection;
mod systemd_dbus;
mod systemd_manager;
mod systemd_types;
mod systemd_unit;

pub use self::systemd_connection::*;
pub use self::systemd_manager::*;
pub use self::systemd_types::*;
pub use self::systemd_unit::*;

// ex: noet ts=4 filetype=rust