podcast_feed.ex 377 B

1234567891011121314
  1. defmodule PodcastFeed do
  2. @moduledoc """
  3. PodcastFeed keeps the contexts that define your domain
  4. and business logic.
  5. Contexts are also responsible for managing your data, regardless
  6. if it comes from the database, an external API or others.
  7. """
  8. alias PodcastFeed.Provider.Archive
  9. def archive(identifier) do
  10. Archive.Parser.by_identifier(identifier)
  11. end
  12. end