"""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.utils import URI from bsfs.utils import typename # exports __all__: typing.Sequence[str] = ( 'URI', 'typename', ) ## EOF ##