Files
strix/strix/interface/viewer/__init__.py
T

13 lines
301 B
Python

"""Local web viewer for Strix runs.
Serves a prebuilt single-page app that renders a run (live or finished) read
directly from the run's on-disk files. No cloud dependency, no file picker.
"""
from __future__ import annotations
from strix.interface.viewer.server import serve
__all__ = ["serve"]