Currently I've a single proto3 file, lets call it TopLevel.proto
package myprotos.protobuf;I want to create a new folder w/ some proto files, lets call folderA with different proto
Inside.proto
package myprotos.protobuf.folderA;When in PyCharm, I am importing Inner in TopLevel.proto it is unable to find :
package myprotos.protobuf;Any suggestion on how to import the subfolder proto files?