package app import scalatags.Text.all._ object Scalatags extends cask.MainRoutes{ @cask.get("/") def hello() = { "" + html( body( h1("Hello World"), p("I am cow") ) ) } initialize() }