From 6e06a04e141591df4808cc4fbbb2429a42fb6449 Mon Sep 17 00:00:00 2001
From: Tyler Goodlet <jgbt@protonmail.com>
Date: Mon, 9 Dec 2024 18:12:22 -0500
Subject: [PATCH] Add TODO for a runtime-vars passing mechanism

---
 tractor/_root.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tractor/_root.py b/tractor/_root.py
index 51dbe5e6..bcdee3ef 100644
--- a/tractor/_root.py
+++ b/tractor/_root.py
@@ -95,6 +95,10 @@ async def open_root_actor(
 
     hide_tb: bool = True,
 
+    # TODO, a way for actors to augment passing derived
+    # read-only state to sublayers?
+    # extra_rt_vars: dict|None = None,
+
 ) -> Actor:
     '''
     Runtime init entry point for ``tractor``.