Current section
Files
Jump to
Current section
Files
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