Packages

Execution Plane process launch, stdio, PTY, and process-session runtime.

Current section

Files

Jump to
execution_plane_process lib execution_plane process application.ex
Raw

lib/execution_plane/process/application.ex

defmodule ExecutionPlane.Process.Application do
@moduledoc """
OTP application entry point for the standalone process runtime package.
"""
use Application
@impl true
def start(_type, _args) do
children = [
{Task.Supervisor, name: ExecutionPlane.TaskSupervisor},
ExecutionPlane.Process.TransportSupervisor
]
Supervisor.start_link(children,
strategy: :one_for_one,
name: ExecutionPlane.Process.Supervisor
)
end
end