server_manager/config/
struct.rs

1/// Configuration parameters for server management.
2///
3/// Holds all necessary configuration values for server operation.
4#[derive(Clone)]
5pub struct ServerManagerConfig {
6    /// Path to the PID file for process tracking.
7    pub pid_file: String,
8}