uuid for container

This commit is contained in:
Noor 2025-01-23 14:49:41 +05:30
parent f4e1159efc
commit ff7c5ade50
Signed by: noormohammedb
GPG Key ID: D83EFB8B3B967146
2 changed files with 4 additions and 0 deletions

@ -57,6 +57,7 @@ message Container {
optional string package_url = 1;
string node = 2;
Resource resource = 3;
string uuid = 4;
}
message Resource {

@ -84,6 +84,9 @@ pub mod config {
pub node: String,
#[prost(message, optional, tag = "3")]
pub resource: Option<Resource>,
#[serde(default)]
#[prost(string, tag = "4")]
pub uuid: String,
}
#[derive(Clone, Serialize, Deserialize, PartialEq, prost::Message)]