fix(ug-parser): impl Default for UgTabFetcher

This commit is contained in:
2026-04-08 01:42:35 +02:00
parent 6416f5e9ab
commit 36d38b9a78

View File

@@ -11,6 +11,12 @@ impl UgTabFetcher {
}
}
impl Default for UgTabFetcher {
fn default() -> Self {
Self::new()
}
}
#[async_trait]
impl TabFetcherPort for UgTabFetcher {
async fn fetch(&self, source: TabSource) -> Result<String, FetchError> {