service-install 0.5.7

Easily provide users an install method on Linux systems
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug, Clone)]
pub enum Schedule {
    /// Local time
    Daily(time::Time),
    /// Run once very this duration, 
    /// note the service runs with second accuracy
    Every(std::time::Duration),
}