Files
orca/proto/req.proto
Zheng Kai 894b62bf29 up
2023-04-27 16:02:58 +08:00

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;
}