Current section

Files

Jump to
elixir_plaid lib plaid client httpoison.ex
Raw

lib/plaid/client/httpoison.ex

defmodule Plaid.Client.HTTPoison do
@moduledoc """
Implements the Plaid.Client behaviour, which calls for a `post/3` function.
"""
@behaviour Plaid.Client
require Logger
@impl true
def post(url, payload, headers) do
HTTPoison.post(url, payload, headers)
end
end