Attic/scala/app0.scala
author cu
Mon, 02 Oct 2017 10:02:48 +0100
changeset 541 5cd1865d45bd
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!")
  }  
}