```python
from fastapi import FastAPI

import helpers  # noqa: F401  (the provided API)

app = FastAPI()


@app.post("/orders")
def create_order(order: dict):
    processed_order = helpers.process_order(order)
    return processed_order, 201
```