This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

1、参考check_grpc.proto 手写 proto 相关结构
2、使用编译命令生成grpc通讯相关命令如下
python -m grpc_tools.protoc --proto_path=proto_dir \
       --python_out=gen_dir \
       --grpc_python_out=gen_dir \
       proto_dir/check_grpc.proto
只会生成requeset、response
3、拷贝当前文件下的check_grpc_client.py 、check_grpc_server.py重写逻辑代码