server_manager/
lib.rs

1
2
3
4
5
6
7
8
9
10
pub(crate) mod cfg;
pub(crate) mod config;
pub(crate) mod manager;

pub(crate) use config::r#type::ServerConfig;
#[cfg(unix)]
pub(crate) use daemonize::Daemonize;
pub(crate) use std::{error::Error, fs, process};

pub use manager::r#type::ServerManager;