2019-02-11 22:22:35 +00:00
|
|
|
defmodule Frenzy do
|
|
|
|
@moduledoc """
|
|
|
|
Frenzy keeps the contexts that define your domain
|
|
|
|
and business logic.
|
|
|
|
|
|
|
|
Contexts are also responsible for managing your data, regardless
|
|
|
|
if it comes from the database, an external API or others.
|
|
|
|
"""
|
2021-09-22 17:59:44 +00:00
|
|
|
|
|
|
|
def sentry_enabled? do
|
|
|
|
Application.get_env(:frenzy, :sentry_enabled)
|
|
|
|
end
|
2019-02-11 22:22:35 +00:00
|
|
|
end
|