feat: implement packagequeue
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful

This commit is contained in:
Didier Slof 2023-08-13 20:53:58 +02:00
parent 2ca231e761
commit 80c3072174
Signed by: didier
GPG key ID: 01E71F18AA4398E5
10 changed files with 176 additions and 60 deletions

View file

@ -8,3 +8,13 @@ pub struct Build {
pub install_script: String,
pub dependencies: HashMap<String, String>,
}
impl Default for Build {
fn default() -> Self {
Build {
dependencies: HashMap::default(),
build_script: String::default(),
install_script: String::default()
}
}
}