cover/Elixir.WalletRisk.Application.html| 1 | defmodule WalletRisk.Application do |
|
| 2 | @moduledoc false |
|
| 3 | use Application |
|
| 4 | |
|
| 5 | @impl true |
|
| 6 | def start(_type, _args) do |
|
| 7 | :-( |
children = [ |
| 8 | WalletRisk.RiskProfileStore, |
|
| 9 | WalletRisk.RiskSignalStore, |
|
| 10 | WalletRisk.RiskCaseStore |
|
| 11 | ] |
|
| 12 | |
|
| 13 | :-( |
opts = [strategy: :one_for_one, name: WalletRisk.Supervisor] |
| 14 | :-( |
Supervisor.start_link(children, opts) |
| 15 | end |
|
| 16 | end |
|
| Line | Hits | Source |
|---|