All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.kinoplan.utils.zio.http.healthcheck.routes.HealthcheckRoutes.scala Maven / Gradle / Ivy

The newest version!
package io.kinoplan.utils.zio.http.healthcheck.routes

import zhttp.http._

object HealthcheckRoutes {

  val expose: HttpApp[Any, Throwable] = Http.collect { case Method.GET -> !! / "health" =>
    Response.ok
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy