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