gomall项目中makefile29-35行疑问
Closed this issue · 4 comments
darrenxyue commented
PHONY: gen-checkout-client
gen-checkout-client:
@cd app/frontend && cwgo client -I ../../idl --type RPC --service checkout --module github.com/cloudwego/biz-demo/gomall/app/frontend --idl ../../idl/checkout.proto
.PHONY: gen-order-client
gen-order-client:
@cd app/frontend && cwgo client -I ../../idl --type RPC --service order --module github.com/cloudwego/biz-demo/gomall/app/frontend --idl ../../idl/order.proto
前面21-23行已经生成了说有RPC的client,为什么这里还要在frontend里面生成RPC 的client?并且没有看到生成的文件
rogerogers commented
这部分是之前遗留的,现在已经不需要了,晚点我来删掉
执行前面的 gen-client 就 OK 了
darrenxyue commented
好的
darrenxyue commented
rogerogers commented
抱歉,最近有点忙, 马上修复