Packages

The 'do nothing' HTTP client for Elixir.

Current section

Files

Jump to
httplacebo lib httplacebo.ex
Raw

lib/httplacebo.ex

defmodule HTTPlacebo.Response do
defstruct status_code: nil, body: nil, headers: []
@type t :: %__MODULE__{status_code: integer, body: binary, headers: list}
end
defmodule HTTPlacebo do
use HTTPlacebo.Base
end