```python
from fastapi import FastAPI

import helpers

app = FastAPI()


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