From 4974e3efe5d6aa7f0158b0bd6d62f247fb854406 Mon Sep 17 00:00:00 2001 From: overclockworked64 Date: Sat, 16 Oct 2021 17:31:26 +0200 Subject: [PATCH] Add 'open_actor_cluster' to __all__ --- tractor/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tractor/__init__.py b/tractor/__init__.py index 795feb7..602e7bf 100644 --- a/tractor/__init__.py +++ b/tractor/__init__.py @@ -4,6 +4,7 @@ tractor: An actor model micro-framework built on """ from trio import MultiError +from ._clustering import open_actor_cluster from ._ipc import Channel from ._streaming import ( Context, @@ -39,6 +40,7 @@ __all__ = [ 'get_arbiter', 'is_root_process', 'msg', + 'open_actor_cluster', 'open_nursery', 'open_root_actor', 'Portal',