mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-18 18:03:42 -05:00
8 lines
152 B
Rust
8 lines
152 B
Rust
#[derive(Clone, Debug)]
|
|
pub struct Image {
|
|
pub registry: String,
|
|
pub repository: String,
|
|
pub tag: String,
|
|
pub digest: Option<String>,
|
|
}
|