home73k/lib/home73k.ex

15 lines
427 B
Elixir
Raw Normal View History

2021-03-28 21:12:55 -04:00
defmodule Home73k do
@moduledoc """
Home73k 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.
"""
@app_vars Application.compile_env(:home73k, :app_global_vars, time_zone: "America/New_York")
@app_time_zone @app_vars[:time_zone]
def app_time_zone, do: @app_time_zone
2021-03-28 21:12:55 -04:00
end