Coverage for src/pyrf_api/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-09-06 21:54 +0000
« prev ^ index » next coverage.py v7.15.4, created at 2026-09-06 21:54 +0000
1"""Thin HTTP API adapter for pyrf library.
3Run: uv run uvicorn pyrf_api:app --reload
5Env:
6 PYRF_API_TOKEN - Bearer token (required when auth enabled)
7 PYRF_API_AUTH_DISABLED - Set to true to skip Bearer auth (for local browser testing)
8"""
10from .app import app
12__all__ = ["app"]
14__all__ = ["app"]