"""Mantimon TCG - FastAPI Application Entry Point.""" from fastapi import FastAPI app = FastAPI( title="Mantimon TCG", description="A home-rule-modified Pokemon Trading Card Game", version="0.1.0", ) @app.get("/health") async def health_check() -> dict[str, str]: """Health check endpoint.""" return {"status": "healthy"}