mirror of
https://github.com/rocky-linux/srpmproc.git
synced 2024-11-14 01:01:23 +00:00
16 lines
302 B
Protocol Buffer
16 lines
302 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "github.com/rocky-linux/srpmproc/pb;srpmprocpb";
|
|
|
|
package srpmproc;
|
|
|
|
message VersionRelease {
|
|
string version = 1;
|
|
string release = 2;
|
|
}
|
|
|
|
message ProcessResponse {
|
|
map<string, string> branch_commits = 1;
|
|
map<string, VersionRelease> branch_versions = 2;
|
|
}
|