server_manager/config/
type.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Title: ServerManagerConfig structure for configuration parameters
///
/// Parameters:
/// - None
///
/// Returns:
/// - None
///
/// This structure holds the configuration values including the PID file path, stdout log path, and stderr log path.
#[allow(dead_code)]
pub struct ServerManagerConfig {
    pub pid_file: String,
    pub stdout_log: String,
    pub stderr_log: String,
}