| 85 | |
| 86 | #[derive(Debug, Deserialize, Serialize)] |
| 87 | struct ServerConfig { |
| 88 | bind_addr: String, |
| 89 | base_url: String, |
| 90 | #[serde(skip_serializing_if = "Option::is_none")] |
| 91 | static_endpoint: Option<String>, |
| 92 | } |
| 93 | |
| 94 | #[derive(Debug, Deserialize, Serialize)] |
| 95 | struct KeysConfig { |
nothing calls this directly
no outgoing calls
no test coverage detected