add Makefile

This commit is contained in:
2024-05-19 16:14:07 +07:00
parent f917aff971
commit 288f880cdd
4 changed files with 37 additions and 1 deletions
+13 -1
View File
@@ -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 {}