Current section

Files

Jump to
split_client lib boundary http http.ex
Raw

lib/boundary/http/http.ex

defmodule SplitClient.Boundary.HTTP do
# Adapter around an HTTP dependency that makes it our own
@moduledoc false
@behaviour SplitClient.Boundary.HTTPBehaviour
def get(url, headers, options \\ []) do
HTTPoison.get(url, headers, options)
end
end