mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
15 lines
344 B
Protocol Buffer
15 lines
344 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package resf.apollo.v1;
|
|
|
|
import "google/protobuf/wrappers.proto";
|
|
|
|
option go_package = "peridot.resf.org/apollo/pb;apollopb";
|
|
|
|
message Fix {
|
|
google.protobuf.StringValue ticket = 1;
|
|
google.protobuf.StringValue source_by = 2;
|
|
google.protobuf.StringValue source_link = 3;
|
|
google.protobuf.StringValue description = 4;
|
|
}
|