From 547124605a9f86469a547fcaf38dc18ae57b707f Mon Sep 17 00:00:00 2001 From: Matthias Baumgartner Date: Thu, 5 Jan 2023 23:55:02 +0100 Subject: essential structures --- tagit/utils/__init__.py | 18 ++++++++++++++++++ tagit/utils/bsfs.py | 15 +++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 tagit/utils/__init__.py create mode 100644 tagit/utils/bsfs.py (limited to 'tagit/utils') 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 ## -- cgit v1.2.3