cover/Elixir.WalletSettlement.Application.html

1 defmodule WalletSettlement.Application do
2 @moduledoc false
3 use Application
4
5 @impl true
6 def start(_type, _args) do
7
:-(
children = [
8 WalletSettlement.SettlementStore,
9 WalletSettlement.ReconciliationStore,
10 WalletSettlement.ExceptionStore,
11 WalletSettlement.JobQueue
12 ]
13
14
:-(
opts = [strategy: :one_for_one, name: WalletSettlement.Supervisor]
15
:-(
Supervisor.start_link(children, opts)
16 end
17 end
Line Hits Source