# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~

* / module:secure

# Home page
GET     /                                       Game.start

# GET  /test/{<.*>path}  Application.test

GET     /info                                   Test.info
GET     /info/{arg}                             Test.info

# Map static resources from the /app/public folder to the /public path
GET     /public/                                staticDir:public

# Catch all
*       /{controller}/{action}                  {controller}.{action}
