mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2025-12-08 20:58:55 +00:00
17 lines
270 B
Protocol Buffer
17 lines
270 B
Protocol Buffer
syntax = "proto3";
|
|
package myservice;
|
|
|
|
message DoSomethingRequest {
|
|
}
|
|
|
|
message DoSomethingResponse {
|
|
}
|
|
|
|
service MyService {
|
|
rpc DoSomething(DoSomethingRequest) returns (DoSomethingResponse) {
|
|
option (google.api.http) = {
|
|
get: "/v1/dosomething"
|
|
};
|
|
};
|
|
}
|