Makefile 273 B

1234567891011121314
  1. SHELL=cmd
  2. .PHONY: all clean check lint cover build_api_win build_rpc_win help
  3. all:clean check cover
  4. modTidy:
  5. go mod tidy
  6. genRpc:
  7. cd rpc/codeservice && goctl rpc protoc codeService.proto --go_out=./ --go-grpc_out=./ --zrpc_out=.
  8. @echo "===========> genRpc finish"