fix: included Uuid type in shared

This commit is contained in:
Noor 2025-01-23 19:50:48 +05:30
parent 28497eeb99
commit f8133925f4
Signed by: noormohammedb
GPG Key ID: D83EFB8B3B967146

@ -87,8 +87,13 @@ pub struct Container {
pub node: String,
#[prost(message, optional, tag = "3")]
pub resource: Option<Resource>,
#[serde(default)]
#[prost(string, tag = "4")]
#[prost(message, tag = "4")]
pub uuid: Option<Uuid>,
}
#[derive(Clone, Serialize, Deserialize, prost::Message)]
pub struct Uuid {
#[prost(string, tag = "1")]
pub uuid: String,
}