Add ImportRPM response in proto

This commit is contained in:
Mustafa Gezen 2023-08-28 05:11:35 +02:00
parent 288e7f59fb
commit e009a1641a
Signed by: mustafa
GPG Key ID: DCDF010D946438C1

View File

@ -56,3 +56,10 @@ message ProcessRPMResponse {
// The entry created for the RPM
Entry entry = 1;
}
// ImportRPMResponse is the response message for the ImportRPM activity
message ImportRPMResponse {
// Commit hash of the imported RPM
// e.g. 1234567890abcdef1234567890abcdef12345678
string commit_hash = 1 [(google.api.field_behavior) = REQUIRED];
}