imcui-dev / hloc /matchers /__init__.py
Realcat
init: files
4bde5d3
raw
history blame
120 Bytes
def get_matcher(matcher):
mod = __import__(f"{__name__}.{matcher}", fromlist=[""])
return getattr(mod, "Model")