Defines the public interface better

This commit is contained in:
Trenton H
2026-01-29 09:26:02 -08:00
parent 0dbcc19e4b
commit 7248da4e15

View File

@@ -90,3 +90,11 @@ def get_date_parser() -> DateParserPluginBase:
# 3. Instantiate the discovered class with the config
return parser_class(config=config)
__all__ = [
"DateParserConfig",
"DateParserPluginBase",
"RegexDateParserPlugin",
"get_date_parser",
]