mirror of
https://github.com/usestrix/strix.git
synced 2026-08-23 11:22:37 +02:00
13 lines
291 B
Python
13 lines
291 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.viewer.server import serve
|
|
|
|
|
|
__all__ = ["serve"]
|