uni_service_manager 0.1.7

A crate for for managing cross platform OS services
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Service management crate which gives a unified interface, but is platform dependent

#[cfg(target_os = "macos")]
mod launchd;
mod manager;
#[doc = include_str!("../README.md")]
mod readme_tests {}
#[cfg(windows)]
mod sc;
#[cfg(target_os = "linux")]
mod systemd;
#[cfg(not(target_os = "windows"))]
mod unix_util;
#[cfg(not(target_os = "windows"))]
mod util;

pub use manager::*;