Current section

Files

Jump to
combo_new templates combo_saas lib core.ex
Raw

templates/combo_saas/lib/core.ex

defmodule ComboSaaS.Core do
@moduledoc """
`ComboSaaS.Core` keeps the contexts that define the domain
and business logic.
Contexts are also responsible for managing data, regardless
if it comes from the database, an external API or others.
"""
use Boundary,
deps: [
Ecto,
Ecto.Changeset,
ComboSaaS.I18n
],
exports: [
Supervisor
]
end