mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 12:41:24 +00:00
30 lines
522 B
Protocol Buffer
30 lines
522 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package resf.apollo.v1;
|
|
|
|
option go_package = "peridot.resf.org/apollo/pb;apollopb";
|
|
|
|
message ShortCode {
|
|
// Code
|
|
//
|
|
// Full short code
|
|
string code = 1;
|
|
|
|
enum Mode {
|
|
MODE_UNKNOWN = 0;
|
|
MODE_PUBLISH = 1;
|
|
MODE_MIRROR = 2;
|
|
}
|
|
// Mode
|
|
//
|
|
// Mode for short code
|
|
// Currently only publish and mirror is supported
|
|
Mode mode = 2;
|
|
|
|
// Archived
|
|
//
|
|
// Whether the short code is archived or not
|
|
// An archived short code CANNOT be used to issue errata
|
|
bool archived = 3;
|
|
}
|