Current section

Files

Jump to
split_client lib boundary http http_behaviour.ex
Raw

lib/boundary/http/http_behaviour.ex

defmodule SplitClient.Boundary.HTTPBehaviour do
# Behaviour for creating HTTP requests
@moduledoc false
@callback get(String.t(), [tuple()], keyword()) :: {:ok, any() | any()} | {:error, any()}
@callback get(String.t(), [tuple()]) :: {:ok, any() | any()} | {:error, any()}
end