// TODO : Implement repo.db.tar.gz parsing pub struct RepoDB { file: String, } impl RepoDB { pub fn new(file: &str) -> Self { Self { file: file.to_string(), } } }