2020-07-04 02:41:01 +00:00
|
|
|
defmodule Core do
|
2020-07-02 21:08:53 +00:00
|
|
|
@moduledoc """
|
2020-07-04 02:41:01 +00:00
|
|
|
Core keeps the contexts that define your domain
|
2020-07-02 21:08:53 +00:00
|
|
|
and business logic.
|
|
|
|
|
|
|
|
Contexts are also responsible for managing your data, regardless
|
|
|
|
if it comes from the database, an external API or others.
|
|
|
|
"""
|
|
|
|
end
|