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__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/bsie/lib/__init__.py b/bsie/lib/__init__.py
index f6c9018..578c2c4 100644
--- a/bsie/lib/__init__.py
+++ b/bsie/lib/__init__.py
@@ -7,7 +7,12 @@ Author: Matthias Baumgartner, 2022
# imports
import typing
+# inner-module imports
+from .bsie import BSIE
+
# exports
-__all__: typing.Sequence[str] = []
+__all__: typing.Sequence[str] = (
+ 'BSIE',
+ )
## EOF ##