add Makefile
This commit is contained in:
+13
-1
@@ -1,5 +1,17 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package crabs.${REPO_NAME};
|
||||
package crabs.${REPO_NAME_SNAKE};
|
||||
|
||||
import "google/api/annotations.proto";
|
||||
|
||||
service ${REPO_NAME_PASCAL} {
|
||||
rpc Ping(PingReq) returns (PingRsp) {
|
||||
option (google.api.http) = {
|
||||
get: "/ping"
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
message PingReq {}
|
||||
|
||||
message PingRsp {}
|
||||
|
||||
Reference in New Issue
Block a user