mirror of
https://github.com/zhengkai/orca.git
synced 2026-02-04 16:32:26 +08:00
10 lines
130 B
Protocol Buffer
10 lines
130 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "/pb";
|
|
package pb;
|
|
|
|
message Req {
|
|
string method = 1;
|
|
string path = 2;
|
|
bytes body = 3;
|
|
}
|