data_workshop/proto/way.proto

18 lines
326 B
Protocol Buffer
Raw Normal View History

2020-05-22 07:39:43 +00:00
syntax = "proto3";
package main;
option go_package = ".;main";
import "google/api/annotations.proto";
import "base.proto";
// The greeting service definition.
service Way {
rpc Name (Request) returns (Reply){
option (google.api.http) = {
post: "/v1/way/name"
body: "*"
};
}
}