(&self)
| 123 | None => Ok(Vec::new()), |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | pub async fn get_mod(&self, mod_id: &str) -> Result<Option<ModCatalogEntry>> { |
| 128 | match &self.mod_store { |
| 129 | Some(store) => store.get_mod(mod_id).await, |
| 130 | None => Ok(None), |
no outgoing calls
no test coverage detected