"""Minimal mock of the parent-suite `satellite-provider`. Bootstrap (AZ-263) placeholder — exposes only `GET /healthz`. The full D-PROJ-2 ingest contract is implemented once the parent-suite design lands. """ from __future__ import annotations from fastapi import FastAPI app = FastAPI(title="mock-suite-sat-service", version="0.1.0") @app.get("/healthz") def healthz() -> dict[str, str]: return {"status": "ok"}