From 3cd94ffdcd79d8f8f6b92ad5606da9fe40884ad6 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 06:52:57 +0000 Subject: [PATCH] Initial upload: DevDash CLI with TUI dashboard --- src/ui/components/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/ui/components/__init__.py diff --git a/src/ui/components/__init__.py b/src/ui/components/__init__.py new file mode 100644 index 0000000..7c8f409 --- /dev/null +++ b/src/ui/components/__init__.py @@ -0,0 +1,5 @@ +from src.ui.components.status import StatusIndicator +from src.ui.components.cards import PullRequestCard, IssueCard +from src.ui.components.panels import GitStatusPanel, CIStatusPanel, PullRequestsPanel, IssuesPanel + +__all__ = ["StatusIndicator", "PullRequestCard", "IssueCard", "GitStatusPanel", "CIStatusPanel", "PullRequestsPanel", "IssuesPanel"]