Packages

Remote task runner using Erlang distribution over SSH. Push modules and execute functions on remote machines without pre-installing your application. Zero dependencies.

Current section

Files

Jump to
fusion lib fusion application.ex
Raw

lib/fusion/application.ex

defmodule Fusion.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
{DynamicSupervisor, strategy: :one_for_one, name: Fusion.TunnelSupervisor}
]
opts = [strategy: :one_for_one, name: Fusion.Supervisor]
Supervisor.start_link(children, opts)
end
end