gRPC Protobuf 文件生成器
生成 gRPC Protobuf 文件,包含 service / message 模板
📋 Proto 配置
标量类型速查
| Protobuf | Go | Java | Python |
|---|---|---|---|
double | float64 | double | float |
float | float32 | float | float |
int32 | int32 | int | int |
int64 | int64 | long | int |
uint32 | uint32 | int | int |
string | string | String | str |
bool | bool | boolean | bool |
bytes | []byte | ByteString | bytes |