overflow_api_db/grpc/grpc.proto

17 lines
246 B
Protocol Buffer
Raw Normal View History

2017-05-23 06:00:44 +00:00
syntax = "proto3";
message DBInput {
string targetDao = 1;
string method = 2;
map<string, string> param = 3;
}
message DBOutput {
map<string, string> result = 1;
}
service DB {
rpc exec(DBInput) returns (DBOutput) {}
}