def healthCheck()

in app/controllers/Application.scala [26:29]


  def healthCheck() = Action { implicit request => {
    log.info("Responding from the healthcheck")
    Ok(Json.parse(BuildInfo.toJson))
  }}