Files
i18n-guardian/i18n_guardian/detectors/__init__.py
7000pctAUTO 28521d6287
Some checks failed
CI / test (3.10) (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled
Add detectors module
2026-02-02 17:20:47 +00:00

14 lines
216 B
Python

"""Detectors package."""
from i18n_guardian.detectors.base import (
Detector,
DetectorRegistry,
get_default_registry,
)
__all__ = [
"Detector",
"DetectorRegistry",
"get_default_registry",
]