```python
from fastapi import Body, FastAPI

import helpers  # noqa: F401

app = FastAPI()


@app.post("/orders", status_code=201)
async def create_order(item: str = Body(...)):
    await helpers.aappend_audit_line(f"order:{item}")
    return {"status": "created"}
```