BadCoach / api /server.py
github-actions[bot]
Deploy: 2026-03-20 22:16 UTC — 8d3dcce1a697b8bd281a289e5c88d1c0a054bf8c
57a2b6f
Raw
History Blame Contribute Delete
445 Bytes
"""
Backward-compatible module: `uvicorn api.server:app` redirects to the split app.
Tests and tooling may import MAX_* from here.
"""
from api.config import (
MAX_CONCURRENT_JOBS,
MAX_CONCURRENT_LIVE_SESSIONS,
MAX_QUEUED_JOBS,
MAX_VIDEO_DURATION_SECONDS,
)
from api.main import app
__all__ = [
"app",
"MAX_CONCURRENT_JOBS",
"MAX_QUEUED_JOBS",
"MAX_CONCURRENT_LIVE_SESSIONS",
"MAX_VIDEO_DURATION_SECONDS",
]