diff options
| author | Matthias Baumgartner <dev@igsor.net> | 2023-01-05 23:55:02 +0100 |
|---|---|---|
| committer | Matthias Baumgartner <dev@igsor.net> | 2023-01-05 23:55:02 +0100 |
| commit | 547124605a9f86469a547fcaf38dc18ae57b707f (patch) | |
| tree | 713fa18e36e1347a89c18807b03bffb268bd6d08 /tagit/utils | |
| parent | e1e77797454ac747b293f589d8f2e0243173a419 (diff) | |
| download | tagit-547124605a9f86469a547fcaf38dc18ae57b707f.tar.gz tagit-547124605a9f86469a547fcaf38dc18ae57b707f.tar.bz2 tagit-547124605a9f86469a547fcaf38dc18ae57b707f.zip | |
essential structures
Diffstat (limited to 'tagit/utils')
| -rw-r--r-- | tagit/utils/__init__.py | 18 | ||||
| -rw-r--r-- | tagit/utils/bsfs.py | 15 |
2 files changed, 33 insertions, 0 deletions
diff --git a/tagit/utils/__init__.py b/tagit/utils/__init__.py new file mode 100644 index 0000000..d5a8efe --- /dev/null +++ b/tagit/utils/__init__.py @@ -0,0 +1,18 @@ +""" + +Part of the tagit module. +A copy of the license is provided with the project. +Author: Matthias Baumgartner, 2022 +""" +# imports +import typing + +# inner-module imports +from . import bsfs + +# exports +__all__: typing.Sequence[str] = ( + 'bsfs', + ) + +## EOF ## diff --git a/tagit/utils/bsfs.py b/tagit/utils/bsfs.py new file mode 100644 index 0000000..0ab90a9 --- /dev/null +++ b/tagit/utils/bsfs.py @@ -0,0 +1,15 @@ +"""BSFS bridge, provides BSFS bindings for tagit. + +Part of the tagit module. +A copy of the license is provided with the project. +Author: Matthias Baumgartner, 2022 +""" +# imports +import typing + +# bsfs imports + +# exports +__all__: typing.Sequence[str] = [] + +## EOF ## |
