aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/matcher/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bsie/matcher/__init__.py')
-rw-r--r--bsie/matcher/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/bsie/matcher/__init__.py b/bsie/matcher/__init__.py
new file mode 100644
index 0000000..836bacf
--- /dev/null
+++ b/bsie/matcher/__init__.py
@@ -0,0 +1,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 ##