Current section

Files

Jump to
soft_bank lib application.ex
Raw

lib/application.ex

defmodule SoftBank.Application do
@moduledoc false
use Application
def start(_type, args) do
children = [
{SoftBank.Repo, args},
{Cldr.Currency, [callback: {SoftBank.Currencies, :init, []}]},
{Registry, keys: :unique, name: :soft_bank_accountants},
{SoftBank.ExchangeRates.Supervisor, [restart: true, start_retriever: true]},
{SoftBank.Currency.Reload, name: SoftBank.Currency.Reload},
{DynamicSupervisor, strategy: :one_for_one, name: SoftBank.Accountant.Supervisor}
]
opts = [
strategy: :one_for_one,
name: SoftBank.Supervisor
]
Supervisor.start_link(children, opts)
end
defp check_db_tables(response = {:ok, _reply}) do
Enum.each([SoftBank.Amount, SoftBank.Account, SoftBank.Entry, SoftBank.Currencies], fn x ->
try do
if SoftBank.Repo.exists?(x) == false do
raise("Unable To Read Database Table(s)")
end
rescue
_ ->
raise("Unable To Read Database Table(s)")
end
end)
response
end
defp check_db_tables(response) do
response
end
end