Files
backrest/proto/types/value.proto
2023-12-20 08:54:45 +00:00

18 lines
246 B
Protocol Buffer

syntax = "proto3";
package types;
option go_package = "github.com/garethgeorge/restora/gen/go/types";
message StringValue {
string value = 1;
}
message StringList {
repeated string values = 1;
}
message Int64Value {
int64 value = 1;
}