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