| 14 | /// Configuration for the server, including address and optional TLS settings. |
| 15 | #[derive(Debug, PartialEq, Serialize, Deserialize, Clone)] |
| 16 | pub struct Server { |
| 17 | /// The server's address in the format `ip:port`. |
| 18 | pub addr: String, |
| 19 | /// Optional TLS configuration for secure connections. |
| 20 | pub tls: Option<Tls>, |
| 21 | } |
| 22 | |
| 23 | /// Main configuration structure for the application. |
| 24 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected