aboutsummaryrefslogtreecommitdiffstats
path: root/bsfs/schema/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bsfs/schema/__init__.py')
-rw-r--r--bsfs/schema/__init__.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/bsfs/schema/__init__.py b/bsfs/schema/__init__.py
new file mode 100644
index 0000000..ad4d456
--- /dev/null
+++ b/bsfs/schema/__init__.py
@@ -0,0 +1,22 @@
+"""
+
+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 .schema import Schema
+from .types import Literal, Node, Predicate
+
+# exports
+__all__: typing.Sequence[str] = (
+ 'Literal',
+ 'Node',
+ 'Predicate',
+ 'Schema',
+ )
+
+## EOF ##