Current section

Files

Jump to
deputy lib deputy http_client.ex
Raw

lib/deputy/http_client.ex

defmodule Deputy.HTTPClient do
@moduledoc """
Behavior for HTTP clients used by Deputy
"""
@callback request(keyword()) :: {:ok, map()} | {:error, any()}
end