1df4b11aef
CI / lint-test-build (push) Failing after 1m7s
- Introduced new HTML templates for the dashboard, metrics, overview, and backtesting functionalities. - Implemented partial templates for metrics, overview, audit, controls, and charts to enhance modularity. - Updated the Jinja2 template resolution logic to support different deployment environments. - Added a health check template to display the service status. - Included a test suite to verify the template resolution logic. - Updated `pyproject.toml` to include new HTML templates in the package data.
16 lines
328 B
Python
16 lines
328 B
Python
"""Runtime lifecycle and recovery helpers."""
|
|
|
|
from arbitrade.runtime.lifecycle import (
|
|
RuntimeRecoveryReport,
|
|
graceful_shutdown,
|
|
persist_runtime_snapshot,
|
|
restore_runtime_state,
|
|
)
|
|
|
|
__all__ = [
|
|
"RuntimeRecoveryReport",
|
|
"graceful_shutdown",
|
|
"persist_runtime_snapshot",
|
|
"restore_runtime_state",
|
|
]
|