open-pod/lib/openpod.ex

15 lines
365 B
Elixir
Raw Normal View History

2020-06-08 23:37:11 +02:00
defmodule Openpod do
2020-05-22 22:04:15 +02:00
@moduledoc """
2020-06-08 23:37:11 +02:00
Openpod keeps the contexts that define your domain
2020-05-22 22:04:15 +02:00
and business logic.
Contexts are also responsible for managing your data, regardless
if it comes from the database, an external API or others.
"""
2020-06-08 23:37:11 +02:00
alias Openpod.Provider.Archive
2020-05-22 22:04:15 +02:00
def archive(identifier) do
Archive.Parser.by_identifier(identifier)
2020-05-22 22:04:15 +02:00
end
end