feat: with fix
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-02-11 14:13:27 +01:00
parent 5dbaf3c87f
commit 999cc9d59f
12 changed files with 34 additions and 17 deletions

View File

@@ -11,6 +11,12 @@ pub struct Apt {
deps: Vec<String>,
}
impl Default for Apt {
fn default() -> Self {
Self::new()
}
}
impl Apt {
pub fn new() -> Self {
Self { deps: Vec::new() }