Packages
execution_plane_process
0.1.0
Execution Plane process launch, stdio, PTY, and process-session runtime.
Current section
Files
Jump to
Current section
Files
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