aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/matcher/__init__.py
blob: 836bacf0eb565d9638623ccc76808c788e4c156e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

# standard imports
import typing

# inner-module imports
from . import nodes
from .default_matcher import DefaultMatcher
from .matcher import Matcher

# exports
__all__: typing.Sequence[str] = (
    'DefaultMatcher',
    'Matcher',
    'nodes',
    )

## EOF ##