Skip to content

Feature: hierarchical structure of protofiles#15

Open
pustekuchen91 wants to merge 3 commits into
kami-soft:masterfrom
pustekuchen91:feature-hierarchical-structure-of-protofiles
Open

Feature: hierarchical structure of protofiles#15
pustekuchen91 wants to merge 3 commits into
kami-soft:masterfrom
pustekuchen91:feature-hierarchical-structure-of-protofiles

Conversation

@pustekuchen91

Copy link
Copy Markdown

in this pull request hierarchical structure of proto files will be adressed.
its a follow-up pull request of #12

For example:
companyname/product/proto/x.proto

syntax = "proto3";
package companyname.product.proto;

import "companyname/product/proto/sample_data/y.proto";

message SampleData{
    sample_data.Y y = 1;
}

companyname/product/proto/sample_data/y.proto

syntax = "proto3";
package companyname.product.proto.sample_data;
message Y {
    message Test {
        int32 low = 1;
    }

    Test test = 1;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant