pacco/src/pkg/db.rs
JMARyA 6eb3678c1c
All checks were successful
ci/woodpecker/push/build Pipeline was successful
refactor
2024-12-29 09:09:54 +01:00

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(),
}
}
}