edda-framework 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,20 @@
1
+ """
2
+ NiceGUI-based workflow instance viewer for Edda framework.
3
+
4
+ This module provides an interactive web interface to visualize
5
+ workflow instances with clickable Mermaid diagrams.
6
+ """
7
+
8
+ from typing import Any
9
+
10
+
11
+ # Lazy import to avoid NiceGUI dependency during testing
12
+ def __getattr__(name: str) -> Any:
13
+ if name == "start_viewer":
14
+ from edda.viewer_ui.app import start_viewer
15
+
16
+ return start_viewer
17
+ raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
18
+
19
+
20
+ __all__ = ["start_viewer"]