blob: 908de7800725e57a7089e9dc0bc84397ea81d595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# standard imports
import typing
# inner-module imports
from .matcher import Matcher
from .parser import parse
# exports
__all__: typing.Sequence[str] = (
'Matcher',
'parse',
)
## EOF ##
|