"""Chicken Babies R Us FastAPI application package. This module intentionally keeps only the package version constant. All runtime wiring lives in :mod:`app.main`. """ from __future__ import annotations # Semantic version of the application. Bump per release. Surfaced via # FastAPI's OpenAPI metadata and the /healthz endpoint so ops can verify # which build is live in a given environment. __version__: str = "0.1.0" __all__ = ["__version__"]