aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/utils/bsfs.py
blob: c48049da192d85e1cee05e6d7f790a05d29d711f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""BSFS bridge, provides BSFS bindings for BSIE.

Part of the bsie module.
A copy of the license is provided with the project.
Author: Matthias Baumgartner, 2022
"""
# imports
import typing

# bsfs imports
from bsfs import Open, schema
from bsfs.namespace import Namespace
from bsfs.utils import URI, typename, uuid

# exports
__all__: typing.Sequence[str] = (
    'Namespace',
    'Open',
    'URI',
    'schema',
    'typename',
    'uuid',
    )

## EOF ##