aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/lib/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bsie/lib/__init__.py')
-rw-r--r--bsie/lib/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bsie/lib/__init__.py b/bsie/lib/__init__.py
index 578c2c4..4239d3b 100644
--- a/bsie/lib/__init__.py
+++ b/bsie/lib/__init__.py
@@ -4,15 +4,17 @@ Part of the bsie module.
A copy of the license is provided with the project.
Author: Matthias Baumgartner, 2022
"""
-# imports
+# standard imports
import typing
# inner-module imports
from .bsie import BSIE
+from .builder import PipelineBuilder
# exports
__all__: typing.Sequence[str] = (
'BSIE',
+ 'PipelineBuilder',
)
## EOF ##