You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
232 B

4 years ago
4 years ago
  1. package nova.monadic_sfx.models
  2. import io.circe.generic.JsonCodec
  3. final case class RequestPayload(data: String)
  4. @JsonCodec final case class HttpBinResponse(
  5. url: String,
  6. origin: String,
  7. headers: Map[String, String]
  8. )