cover/Elixir.WalletNotifications.Application.html

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