mirror of
https://github.com/garethgeorge/backrest.git
synced 2026-09-04 23:35:41 +00:00
18 lines
247 B
Protocol Buffer
18 lines
247 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package types;
|
|
|
|
option go_package = "github.com/garethgeorge/backrest/gen/go/types";
|
|
|
|
message StringValue {
|
|
string value = 1;
|
|
}
|
|
|
|
message StringList {
|
|
repeated string values = 1;
|
|
}
|
|
|
|
message Int64Value {
|
|
int64 value = 1;
|
|
}
|