Current section

Files

Jump to
btrz_ex_api_client lib btrz_ex_api_client http_client.ex
Raw

lib/btrz_ex_api_client/http_client.ex

defmodule BtrzExApiClient.HTTPClient do
@moduledoc false
alias BtrzExApiClient.Types
@callback request(
method :: Types.methods(),
url :: String.t(),
body :: map(),
headers :: Types.headers(),
opts :: Keyword.t()
) :: {:ok, response :: term()} | Type.error()
end