13 lines
205 B
Rust
13 lines
205 B
Rust
// 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(),
|
|
}
|
|
}
|
|
}
|