Current section

Files

Jump to
pagantis_elixir_tools lib http_client adapter.ex
Raw

lib/http_client/adapter.ex

defmodule ElixirTools.HttpClient.Adapter do
@moduledoc """
The adapter specifies a behaviour for implementing HttpClient adapters
"""
@doc """
Returns the base URI String for the HTTP endpoint of a specific adapter.
"""
@callback base_uri() :: String.t()
end