decode index checksum too cus why not

also dumps prettier package descriptions to a file now wahoo
I have good priorities
This commit is contained in:
2024-11-10 17:35:07 +11:00
parent 5e4cf1bbc9
commit 84e8c43c1d
5 changed files with 170 additions and 8 deletions

View File

@ -29,3 +29,9 @@ extension ApkIndex {
}
}
}
extension ApkIndex: CustomStringConvertible {
var description: String {
self.packages.map(String.init).joined(separator: "\n")
}
}