aboutsummaryrefslogtreecommitdiff
path: root/lib/zendex/common_helpers.ex
blob: 34aac300a6ccd7c7b330d7f896612707f33c6aa9 (plain)
1
2
3
4
5
6
7
8
defmodule Zendex.CommonHelpers do
  @moduledoc """
  Contains common helper functions used throughout Zendex.
  """

  def decode_response(%{body: body}), do: Poison.decode!(body)

end