bones73k/lib/bones73k.ex

15 lines
430 B
Elixir
Raw Permalink Normal View History

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.
"""
@app_vars Application.compile_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