1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
253 B
Protocol Buffer

syntax = "proto3";
option go_package = "github.com/rqlite/rqlite/cluster";
message Address {
string url = 1;
}
message Command {
enum Type {
COMMAND_TYPE_UNKNOWN = 0;
COMMAND_TYPE_GET_NODE_API_URL = 1;
}
Type type = 1;
}