```python
from fastapi import FastAPI, Depends, status
from fastapi.requests import Request
from fastapi.responses import JSONResponse
from pydantic import BaseModel, Field
import asyncio

import helpers

app = FastAPI()

billing = helpers.BillingClient()


def get_billing() -> helpers.BillingClient:
    """FastAPI dependency providing the billing client."""
    return billing


class ChargeRequest(BaseModel):
    amount: float = Field(..., gt=0)


class ChargeResponse(BaseModel):
    receipt: str


@app.post("/charges", response_model=ChargeResponse, status_code=status.HTTP_201_CREATED)
async def create_charge(
    charge_req: ChargeRequest,
    billing: helpers.BillingClient = Depends(get_billing),
):
    loop = asyncio.get_running_loop()
    receipt = await loop.run_in_executor(
        None, billing.charge, charge_req.amount
    )
    return {"receipt": receipt}
```