()
| 43 | |
| 44 | |
| 45 | def _trusted_hosts() -> list[str] | None: |
| 46 | raw = os.environ.get("DISPLAYKIT_TRUSTED_HOSTS", "").strip() |
| 47 | if not raw: |
| 48 | return None |
| 49 | hosts = [h.strip() for h in raw.split(",") if h.strip()] |
| 50 | return hosts or None |
| 51 | |
| 52 | |
| 53 | def create_app() -> FastAPI: |