"""API route modules.""" from .audio import router as audio_router from .browser import router as browser_router from .callbacks import router as callbacks_router from .display import router as display_router from .health import router as health_router from .links import router as links_router from .media import router as media_router from .scripts import router as scripts_router __all__ = ["audio_router", "browser_router", "callbacks_router", "display_router", "health_router", "links_router", "media_router", "scripts_router"]