data_workshop/proto/building.proto

21 lines
351 B
Protocol Buffer
Raw Normal View History

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