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

GET     /                           controllers.Application.index(name = "Guest")
GET     /key                        controllers.Application.key
GET     /thread                     controllers.Application.thread
GET     /bodyParserThread           controllers.Application.bodyParserThread
GET     /:name                      controllers.Application.index(name)
POST    /json                       controllers.Application.json

GET     /test/echo                  controllers.TestController.echo
POST    /test/echo                  controllers.TestController.echo
POST    /test/slave                 controllers.TestController.slave

# Map static resources from the /public folder to the /assets URL path
GET     /assets/*file               controllers.Assets.at(path="/public", file)
