package controllers import play.api._ import play.api.mvc._ object Console extends Controller { def console = Action { Redirect("/") } }