feat: download archive
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-02-22 18:36:44 +01:00
parent ff6cc941d8
commit 1d7c056925
4 changed files with 35 additions and 26 deletions

View File

@@ -41,6 +41,12 @@ impl TryFrom<String> for ArtifactID {
}
}
impl From<uuid::Uuid> for ArtifactID {
fn from(value: uuid::Uuid) -> Self {
Self(value)
}
}
pub struct UploadArtifact {
pub file_path: PathBuf,
}