♻️ add product base type feature detection to init

This commit is contained in:
Ondřej Samohel 2025-05-28 15:02:10 +02:00
parent ae88357f6e
commit d082d4180b
No known key found for this signature in database
GPG key ID: 02376E18990A97C6

View file

@ -100,6 +100,10 @@ from .context_tools import (
get_current_task_name
)
from .compatibility import (
is_supporting_product_base_type,
)
from .workfile import (
discover_workfile_build_plugins,
register_workfile_build_plugin,
@ -223,4 +227,7 @@ __all__ = (
# Backwards compatible function names
"install",
"uninstall",
# Feature detection
"is_supporting_product_base_type",
)