chore: use get for quickstart, plain logs for easy understanding (#1905)

This commit is contained in:
Kevin Wan
2022-05-14 17:01:37 +08:00
committed by GitHub
parent 5d09cd0e7c
commit 7b82eda993
5 changed files with 12 additions and 9 deletions

View File

@@ -10,16 +10,13 @@ import (
"github.com/zeromicro/go-zero/tools/goctl/util/pathx"
)
const (
rpcEtcContent = `Name: greet.rpc
ListenOn: 127.0.0.1:8080
`
protoName = "greet.proto"
)
const protoName = "greet.proto"
var (
//go:embed idl/greet.proto
protocContent string
//go:embed idl/rpc.yaml
rpcEtcContent string
zRPCWorkDir string
)