diff options
author | Matthias Baumgartner <dev@igsor.net> | 2022-12-08 16:33:36 +0100 |
---|---|---|
committer | Matthias Baumgartner <dev@igsor.net> | 2022-12-08 16:33:36 +0100 |
commit | 729f025f392d45b621941da9d052834e0d81506e (patch) | |
tree | d8ff3b58267da4735dbce67fc168ab31e687f58f /bsfs/namespace/__init__.py | |
parent | bbfcee4fffc553b5dd08f37a79dd6ccddbf340f8 (diff) | |
download | bsfs-729f025f392d45b621941da9d052834e0d81506e.tar.gz bsfs-729f025f392d45b621941da9d052834e0d81506e.tar.bz2 bsfs-729f025f392d45b621941da9d052834e0d81506e.zip |
namespaces
Diffstat (limited to 'bsfs/namespace/__init__.py')
-rw-r--r-- | bsfs/namespace/__init__.py | 21 |
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 ## |