mirror of
https://github.com/garethgeorge/backrest.git
synced 2026-05-04 12:00:36 +00:00
31 lines
400 B
Protocol Buffer
31 lines
400 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package types;
|
|
|
|
option go_package = "github.com/garethgeorge/backrest/gen/go/types";
|
|
|
|
message BoolValue {
|
|
bool value = 1;
|
|
}
|
|
|
|
message StringValue {
|
|
string value = 1;
|
|
}
|
|
|
|
message BytesValue {
|
|
bytes value = 1;
|
|
}
|
|
|
|
message StringList {
|
|
repeated string values = 1;
|
|
}
|
|
|
|
message Int64Value {
|
|
int64 value = 1;
|
|
}
|
|
|
|
message Int64List {
|
|
repeated int64 values = 1;
|
|
}
|
|
|
|
message Empty {} |