# 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
