Load an existing database
(path: &PathBuf)
| 319 | |
| 320 | /// Load an existing database |
| 321 | fn load_database(path: &PathBuf) -> Result<Arc<QueryCoordinator>, Box<dyn std::error::Error>> { |
| 322 | // Use simplified API - all component initialization is handled internally |
| 323 | let coordinator = QueryCoordinator::from_path(path) |
| 324 | .map_err(|e| -> Box<dyn std::error::Error> { e.into() })?; |
| 325 | |
| 326 | Ok(coordinator) |
| 327 | } |
| 328 | |
| 329 | /// Authenticate a user and create a session |
| 330 | fn authenticate( |
no outgoing calls
no test coverage detected