# Routes
# This file defines all application routes (Higher priority routes first)
# Order is important!
# ~~~~

### Static resources ###
GET     /favicon.ico                       controllers.Assets.at(path="/public", file="favicon.ico")
GET     /favicon.png                       controllers.Assets.at(path="/public", file="favicon.png")
GET     /favicon-16x16.png                 controllers.Assets.at(path="/public", file="favicon-16x16.png")
GET     /favicon-32x32.png                 controllers.Assets.at(path="/public", file="favicon-32x32.png")
GET     /favicon-96x96.png                 controllers.Assets.at(path="/public", file="favicon-96x96.png")
GET     /assets/javascripts/jatos.js       controllers.Assets.at(path="/public/lib/jatos-publix/javascripts", file = "jatos.js")
GET     /assets/javascripts/jatos.min.js   controllers.Assets.at(path="/public/lib/jatos-publix/javascripts", file = "jatos.min.js")
# Versioned assets
GET     /assets/*file                      controllers.Assets.versioned(path="/public", file: Asset)
# Non-versioned assets
GET      /assets-nv/*file                  controllers.Assets.at(path="/public", file)
GET     /ping                              controllers.Ping.ping()

# Include other route files
->  /  gui.Routes
->  /  publix.Routes
