Re-structure the project.
This commit is contained in:
17
src/matcher/strategies/__init__.py
Normal file
17
src/matcher/strategies/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
Matching strategies for field matching.
|
||||
"""
|
||||
|
||||
from .exact_matcher import ExactMatcher
|
||||
from .concatenated_matcher import ConcatenatedMatcher
|
||||
from .substring_matcher import SubstringMatcher
|
||||
from .fuzzy_matcher import FuzzyMatcher
|
||||
from .flexible_date_matcher import FlexibleDateMatcher
|
||||
|
||||
__all__ = [
|
||||
'ExactMatcher',
|
||||
'ConcatenatedMatcher',
|
||||
'SubstringMatcher',
|
||||
'FuzzyMatcher',
|
||||
'FlexibleDateMatcher',
|
||||
]
|
||||
Reference in New Issue
Block a user