Packages
Httpoison boosted with telemetry, mox and ex_rated.
Retired package: Deprecated - no longer maintained
Current section
Files
Jump to
Current section
Files
lib/client/encoders/json.ex
defmodule Client.Encoders.JSON do
@behaviour Client.Encoders
def headers, do: %{"Content-Type" => "application/json"}
def encode(payload), do: Poison.encode(payload)
def encode!(payload), do: Poison.encode!(payload)
end