(&self, mod_id: &str)
| 116 | pub async fn prune_stale(&self, min_last_seen_unix_ms: i64) -> Result<usize> { |
| 117 | self.directory.prune_stale(min_last_seen_unix_ms).await |
| 118 | } |
| 119 | |
| 120 | pub async fn list_mods(&self, query: &ListModsQuery) -> Result<Vec<ModCatalogEntry>> { |
| 121 | match &self.mod_store { |
| 122 | Some(store) => store.list_mods(query).await, |
| 123 | None => Ok(Vec::new()), |
| 124 | } |
| 125 | } |
| 126 |
no outgoing calls
no test coverage detected