feat: Add goctl quickstart (#1889)

* Add goctl quickstart

* Format code

* Format code
This commit is contained in:
anqiansong
2022-05-13 12:23:24 +08:00
committed by GitHub
parent f486685e99
commit 52f060caae
13 changed files with 395 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
syntax = "proto3";
package ping;
option go_package = "./pb";
message Placeholder{}
service Greet {
rpc ping (Placeholder) returns (Placeholder);
}