aboutsummaryrefslogtreecommitdiffstats
path: root/bsfs/triple_store/__init__.py
blob: 79a288774bfcb0793ede676db01aef9235419ccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

# imports
import typing

# inner-module imports
from .base import TripleStoreBase
from .sparql import SparqlStore

# exports
__all__: typing.Sequence[str] = (
    'SparqlStore',
    'TripleStoreBase',
    )

## EOF ##