overflow_api_db/grpc/grpc.proto
2017-05-25 19:08:39 +09:00

19 lines
286 B
Protocol Buffer

syntax = "proto3";
option java_package = "com.loafle.overflow.db.api";
message DBInput {
string targetDao = 1;
string method = 2;
map<string, string> param = 3;
}
message DBOutput {
string result = 1;
}
service DB {
rpc exec(DBInput) returns (DBOutput) {}
}