| 76 | |
| 77 | #[derive(Debug, Deserialize, Serialize)] |
| 78 | struct AppConfig { |
| 79 | server: ServerConfig, |
| 80 | storage: StorageConfig, |
| 81 | keys: KeysConfig, |
| 82 | cache: Option<CacheConfig>, |
| 83 | validation: Option<ValidationConfig>, |
| 84 | } |
| 85 | |
| 86 | #[derive(Debug, Deserialize, Serialize)] |
| 87 | struct ServerConfig { |
nothing calls this directly
no outgoing calls
no test coverage detected