I've come across the need to import one file into another, but I can't find a clear explanation of how to do it.
So, I have my index proto file using some message from common.proto. All proto files lie in the same directory.
index.proto:
syntax = "proto3";
import "common.proto";
package index;
common.proto:
syntax = "proto3";
package common;
message Void {}
And I receive message: " Cannot resolve import 'common.proto' "