wheat-cache/shell/proto.py

26 lines
535 B
Python
Raw Normal View History

import os
sysPath = os.getcwd()
protoPath = f"{sysPath}/proto"
comm = """
protoc --proto_path={} --go_out=plugins=grpc:{} {}
"""
def out_proto():
# 到达 storage
for root, dirs, files in os.walk(protoPath):
for f in files:
commend = comm.format(root, sysPath, f).strip()
err = os.system(commend)
if err:
print(f, "-> out put err")
else:
print(f, "-> success")
if __name__ == '__main__':
out_proto()