mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-17 09:33:38 -05:00
9 lines
202 B
Rust
9 lines
202 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Clone, PartialEq, Default, Serialize, Deserialize)]
|
|
pub struct Parts {
|
|
pub registry: String,
|
|
pub repository: String,
|
|
pub tag: String,
|
|
}
|