defmodule Ethex.Supervisor do @moduledoc false use Application def start(_, _) do children = [{Finch, name: Ethex.Finch}] opts = [name: Ethex.Supervisor, strategy: :one_for_one] Supervisor.start_link(children, opts) end end