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