aboutsummaryrefslogtreecommitdiffstats
path: root/bsfs/schema/__init__.py
diff options
context:
space:
mode:
authorMatthias Baumgartner <dev@igsor.net>2022-12-08 16:34:13 +0100
committerMatthias Baumgartner <dev@igsor.net>2022-12-08 16:34:13 +0100
commit7eb61d117a995b076d36c55d2c7c268665360813 (patch)
treec47a0fe523349dd3a14c1501281d42347c3b8954 /bsfs/schema/__init__.py
parent729f025f392d45b621941da9d052834e0d81506e (diff)
downloadbsfs-7eb61d117a995b076d36c55d2c7c268665360813.tar.gz
bsfs-7eb61d117a995b076d36c55d2c7c268665360813.tar.bz2
bsfs-7eb61d117a995b076d36c55d2c7c268665360813.zip
schema
Diffstat (limited to 'bsfs/schema/__init__.py')
-rw-r--r--bsfs/schema/__init__.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/bsfs/schema/__init__.py b/bsfs/schema/__init__.py
new file mode 100644
index 0000000..ce381ec
--- /dev/null
+++ b/bsfs/schema/__init__.py
@@ -0,0 +1,24 @@
+"""
+
+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 types
+from .schema import Schema
+from .types import Literal, Node, Predicate
+
+# exports
+__all__: typing.Sequence[str] = (
+ 'Literal',
+ 'Node',
+ 'Predicate',
+ 'Schema',
+ #'types',
+ )
+
+## EOF ##