mirror of
https://github.com/garethgeorge/backrest.git
synced 2025-12-12 00:35:34 +00:00
23 lines
307 B
Protocol Buffer
23 lines
307 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package types;
|
|
|
|
option go_package = "github.com/garethgeorge/backrest/gen/go/types";
|
|
|
|
message StringValue {
|
|
string value = 1;
|
|
}
|
|
|
|
message BytesValue {
|
|
bytes value = 1;
|
|
}
|
|
|
|
message StringList {
|
|
repeated string values = 1;
|
|
}
|
|
|
|
message Int64Value {
|
|
int64 value = 1;
|
|
}
|
|
|
|
message Empty {} |