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
guides/usage.md
# Usage
The main helper is `ExecutionPlane.Process.run/2`.
```elixir
{:ok, result} =
ExecutionPlane.Process.run(%{
command: "echo",
argv: ["hello"]
})
```
The package also exposes the lower process lane adapter and transport helpers
for more explicit runtime composition.