This file is indexed.

/usr/share/gocode/src/go.pedge.io/lion/example/current/main.proto is in golang-go.pedge-lion-dev 0.0~git20171203.2a81062-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
syntax = "proto3";

package main;

message Bar {
  string one = 1;
}

message Foo {
  Bar bar = 1;
  string two = 2;
  uint64 three = 3;
}