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

io.kinoplan.utils.zio.http.healthcheck.server.HealthcheckServer.scala Maven / Gradle / Ivy

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

import zhttp.service._
import zio.ZIO

import io.kinoplan.utils.zio.http.healthcheck.routes.HealthcheckRoutes

object HealthcheckServer {

  def start(port: Int): ZIO[Any, Throwable, Nothing] = Server.start(port, HealthcheckRoutes.expose)

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy