forked from p93542168/wheat-cache
22 lines
300 B
Protocol Buffer
22 lines
300 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
import "base.proto";
|
||
|
|
||
|
option go_package = "pkg/proto";
|
||
|
|
||
|
|
||
|
message StringXSet {
|
||
|
BaseKey key = 1;
|
||
|
string value = 2;
|
||
|
}
|
||
|
|
||
|
message StringxGet {
|
||
|
BaseKey key = 1;
|
||
|
}
|
||
|
|
||
|
message StringxComm {
|
||
|
oneof string_x_comm {
|
||
|
StringXSet get = 1;
|
||
|
StringxGet set = 2;
|
||
|
}
|
||
|
}
|