Hi.
I have a project with a jobmate about grpc. And my jobmate have chop the big proto file in several files. Well, this is correct but I can generate the correct python files.
The proto directory is now as:
$ tree proto/
proto/
├── common
│ └── request.proto
├── file
│ ├── file.proto
│ └── file_service.proto
├── job
│ ├── job.proto
│ └── job_service.proto
├── pool
│ ├── pool.proto
│ └── pool_service.proto
└── worker
├── worker.proto
└── worker_service.proto
5 directories, 9 files
Thanks and regards.