implement export-trackers argument option

This commit is contained in:
yggverse 2025-07-07 17:30:32 +03:00
parent f4425557ee
commit 113dd9ac09
4 changed files with 23 additions and 5 deletions

View file

@ -14,7 +14,7 @@ impl Trackers {
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
pub fn clone(&self) -> HashSet<Url> {
self.0.clone()
pub fn list(&self) -> &HashSet<Url> {
&self.0
}
}