From 7eb61d117a995b076d36c55d2c7c268665360813 Mon Sep 17 00:00:00 2001 From: Matthias Baumgartner Date: Thu, 8 Dec 2022 16:34:13 +0100 Subject: schema --- bsfs/schema/__init__.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 bsfs/schema/__init__.py (limited to 'bsfs/schema/__init__.py') 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 ## -- cgit v1.2.3 From ebc3ccb5fdce950649bfcbf18f88ecb4a9dbcad0 Mon Sep 17 00:00:00 2001 From: Matthias Baumgartner Date: Sun, 18 Dec 2022 13:53:34 +0100 Subject: import fixes --- bsfs/schema/__init__.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'bsfs/schema/__init__.py') diff --git a/bsfs/schema/__init__.py b/bsfs/schema/__init__.py index ce381ec..ad4d456 100644 --- a/bsfs/schema/__init__.py +++ b/bsfs/schema/__init__.py @@ -8,7 +8,6 @@ Author: Matthias Baumgartner, 2022 import typing # inner-module imports -#from . import types from .schema import Schema from .types import Literal, Node, Predicate @@ -18,7 +17,6 @@ __all__: typing.Sequence[str] = ( 'Node', 'Predicate', 'Schema', - #'types', ) ## EOF ## -- cgit v1.2.3