aboutsummaryrefslogtreecommitdiff
path: root/examples/simple/simple.proto
blob: 51583cf18796c5001537a31a55fa605631e4549f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
syntax = "proto3";

message Test1 {
    int32 a = 1;

    enum MyEnum {
        Foo = 0;
        Bar = 1;
    }

    MyEnum e = 2;
}