Packages

A JSON Feed implementation in Elixir

Current section

Files

Jump to
json_feed lib json_feed.ex
Raw

lib/json_feed.ex

defmodule JsonFeed do
def parse(json_as_string) do
Poison.decode! json_as_string, as: %Feed{}
end
end