This file is indexed.

/usr/share/gocode/src/github.com/revel/revel/testdata/conf/routes is in golang-github-revel-revel-dev 0.12.0+dfsg-4.

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
16
# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~

module:testrunner

GET     /hotels                                 Hotels.Index
GET     /hotels/:id                             Hotels.Show
GET     /hotels/:id/booking                     Hotels.Book

# Map static resources from the /app/public folder to the /public path
GET     /public/*filepath                       Static.Serve("public")
GET     /favicon.ico                            Static.Serve("public/img","favicon.png")

# Catch all
*       /:controller/:action                    :controller.:action