mirror of
https://github.com/garethgeorge/backrest.git
synced 2026-09-19 06:25:40 +00:00
13 lines
203 B
Protocol Buffer
13 lines
203 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package types;
|
|
|
|
option go_package = "github.com/garethgeorge/resticui/gen/go/types";
|
|
|
|
message StringValue {
|
|
string value = 1;
|
|
}
|
|
|
|
message StringList {
|
|
repeated string values = 1;
|
|
} |