This file is indexed.

/usr/share/gocode/src/go.pedge.io/lion/discard_pusher.go 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
14
15
package lion

var (
	discardPusherInstance = &discardPusher{}
)

type discardPusher struct{}

func (d *discardPusher) Flush() error {
	return nil
}

func (d *discardPusher) Push(_ *Entry) error {
	return nil
}