aboutsummaryrefslogtreecommitdiffstats
path: root/bsfs/namespace/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bsfs/namespace/__init__.py')
-rw-r--r--bsfs/namespace/__init__.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/bsfs/namespace/__init__.py b/bsfs/namespace/__init__.py
new file mode 100644
index 0000000..98d472f
--- /dev/null
+++ b/bsfs/namespace/__init__.py
@@ -0,0 +1,21 @@
+"""
+
+Part of the BlackStar filesystem (bsfs) module.
+A copy of the license is provided with the project.
+Author: Matthias Baumgartner, 2022
+"""
+# imports
+import typing
+
+# inner-module imports
+from . import predefined as ns
+from .namespace import ClosedNamespace, Namespace
+
+# exports
+__all__: typing.Sequence[str] = (
+ 'ClosedNamespace',
+ 'Namespace',
+ 'ns',
+ )
+
+## EOF ##