我正在尝试将 proto defn 从父 proto 导入具有以下文件夹结构的子 proto。
|
|--parent.proto
|
|--sub
|--child.proto
父.proto
message Attribute {
---
}
child.proto
import "parent.proto"
message Child {
int32 attributeNo = 1;
com.model.Attribute attribute = 2;
}
目前它给我一个错误,说它找不到 parent.proto。请建议。