| 5 | |
| 6 | #[derive(Deserialize, Debug, Clone)] |
| 7 | pub struct Config { |
| 8 | pub digraph_data_directory: String, |
| 9 | pub digraph_postgres_connection: String, |
| 10 | pub digraph_redis_url: String, |
| 11 | pub digraph_server_secret: String, |
| 12 | } |
| 13 | |
| 14 | impl Config { |
| 15 | pub fn load() -> Result<Self> { |
nothing calls this directly
no outgoing calls
no test coverage detected