Packages

Compliant RSS 2.0 and Atom 1.0 parser

Current section

Files

Jump to
gluttony lib feed.ex
Raw

lib/feed.ex

defmodule Gluttony.Feed do
@moduledoc false
@type t :: __MODULE__
defstruct [
:id,
:title,
:url,
:description,
:links,
:updated,
:authors,
:language,
:icon,
:logo,
:copyright,
categories: [],
items: []
]
end
defmodule Gluttony.FeedItem do
@moduledoc false
@type t :: __MODULE__
defstruct [
:id,
:title,
:url,
:description,
:links,
:updated,
:published,
:authors,
:categories,
:source
]
end