Attic/scala/app0.scala
author Christian Urban <urbanc@in.tum.de>
Thu, 27 Oct 2016 11:01:12 +0100
changeset 488 17f603095f0b
parent 198 2ce98ee39990
permissions -rw-r--r--
updated

package controllers
import play.api.mvc._

object Application extends Controller {

  // answering a GET request
  val index = Action { request =>
    Ok("Hello world!")
  }  
}