AQIT 0.1.0
Loading...
Searching...
No Matches
status.py
Go to the documentation of this file.
1# Copyright (c) 2025-present Aquin Labs Private Limited. All Rights Reserved.
2"""Status snapshot re-export (render lives in status_display — bullet list)."""
3
4from __future__ import annotations
5
6from aquin.status_display import StatusSnapshot, render_status
7
8
9def run_status_tui(snapshot: StatusSnapshot) -> None:
10 """Status is a one-shot bullet list, not a full-screen Textual app."""
11 render_status(snapshot)
12
14__all__ = ["StatusSnapshot", "run_status_tui"]
None run_status_tui(StatusSnapshot snapshot)
Definition status.py:13