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

endpoints.documented.delegate.OptionalResponses.scala Maven / Gradle / Ivy

There is a newer version: 0.10.1
Show newest version
package endpoints
package documented
package delegate

/**
  * Interpreter for [[algebra.OptionalResponses]] that ignores
  * information related to documentation and delegates to another
  * [[endpoints.algebra.OptionalResponses]] interpreter.
  */
trait OptionalResponses
  extends algebra.OptionalResponses
    with Endpoints {

  val delegate: endpoints.algebra.OptionalResponses

  def option[A](response: Response[A], notFoundDocumentation: String): Response[Option[A]] =
    delegate.option(response)

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy