cover/Elixir.WalletTransfers.Application.html

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