diff --git a/tractor/__init__.py b/tractor/__init__.py index a7cadb9..394693f 100644 --- a/tractor/__init__.py +++ b/tractor/__init__.py @@ -23,6 +23,7 @@ from ._exceptions import ( from ._debug import breakpoint, post_mortem from . import msg from ._root import run, run_daemon, open_root_actor +from ._portal import Portal __all__ = [ @@ -40,6 +41,7 @@ __all__ = [ 'msg', 'open_nursery', 'open_root_actor', + 'Portal', 'post_mortem', 'run', 'run_daemon',