"""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 """ # standard imports import typing # bsfs imports from bsfs import Open, schema from bsfs.apps.init import init_sparql_store from bsfs.namespace import Namespace from bsfs.utils import URI, typename, uuid # exports __all__: typing.Sequence[str] = ( 'Namespace', 'Open', 'URI', 'init_sparql_store', 'schema', 'typename', 'uuid', ) ## EOF ##