2026-08-30 13:00:33 +02:00
|
|
|
"""Compatibility bridge — the MiniApp registry moved to the plugin layer.
|
2026-07-22 01:22:15 +02:00
|
|
|
|
2026-08-30 13:00:33 +02:00
|
|
|
The registry is a platform concept now (Phase M1): MiniApps are universal
|
|
|
|
|
building blocks for Chat, Dashboard and Windows. This module re-exports the
|
|
|
|
|
universal registry so every existing importer (kommunikation contracts,
|
|
|
|
|
automation routes, tests) keeps working unchanged.
|
|
|
|
|
"""
|
2026-08-13 17:39:22 +02:00
|
|
|
|
2026-08-30 13:00:33 +02:00
|
|
|
from __future__ import annotations
|
2026-08-13 17:39:22 +02:00
|
|
|
|
2026-08-30 13:00:33 +02:00
|
|
|
from app.plugins.miniapp_registry import ( # noqa: F401
|
|
|
|
|
DEFAULT_HOSTS,
|
|
|
|
|
MiniAppDef,
|
|
|
|
|
MiniAppRegistry,
|
|
|
|
|
get_miniapp_registry,
|
|
|
|
|
reset_miniapp_registry,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
"MiniAppDef",
|
|
|
|
|
"MiniAppRegistry",
|
|
|
|
|
"get_miniapp_registry",
|
|
|
|
|
"reset_miniapp_registry",
|
|
|
|
|
"DEFAULT_HOSTS",
|
|
|
|
|
]
|