Add detectors module
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

This commit is contained in:
2026-02-02 17:20:47 +00:00
parent 7853581e1f
commit 28521d6287

View File

@@ -0,0 +1,13 @@
"""Detectors package."""
from i18n_guardian.detectors.base import (
Detector,
DetectorRegistry,
get_default_registry,
)
__all__ = [
"Detector",
"DetectorRegistry",
"get_default_registry",
]