2021-02-24 07:49:39 -05:00
|
|
|
defmodule Bones73k do
|
2020-09-12 18:43:17 -04:00
|
|
|
@moduledoc """
|
2021-02-24 07:49:39 -05:00
|
|
|
Bones73k keeps the contexts that define your domain
|
2020-09-12 18:43:17 -04:00
|
|
|
and business logic.
|
|
|
|
|
|
|
|
Contexts are also responsible for managing your data, regardless
|
|
|
|
if it comes from the database, an external API or others.
|
|
|
|
"""
|
2021-03-26 18:55:17 -04:00
|
|
|
|
|
|
|
@app_vars Application.get_env(:bones73k, :app_global_vars, time_zone: "America/New_York")
|
|
|
|
@app_time_zone @app_vars[:time_zone]
|
|
|
|
|
|
|
|
def app_time_zone, do: @app_time_zone
|
2020-09-12 18:43:17 -04:00
|
|
|
end
|