m/cup
1
0
mirror of https://github.com/sergi0g/cup.git synced 2025-11-20 02:43:42 -05:00

Complete rewrite

This commit is contained in:
Sergio
2024-07-08 16:57:00 +03:00
commit a3068324ee
19 changed files with 3653 additions and 0 deletions

7
src/image.rs Normal file
View File

@@ -0,0 +1,7 @@
#[derive(Clone, Debug)]
pub struct Image {
pub registry: String,
pub repository: String,
pub tag: String,
pub digest: Option<String>,
}