endpoints4s.algebra.TextEntitiesTestApi.scala Maven / Gradle / Ivy
package endpoints4s.algebra
trait TextEntitiesTestApi extends EndpointsTestApi {
val textRequestEndpointTest: Endpoint[String, String] =
endpoint(
post(path / "text", textRequest),
ok(textResponse)
)
}