FastAPI - Middleware and Hooks
What is wrong with this FastAPI TrustedHostMiddleware usage?
```python
app.add_middleware(TrustedHostMiddleware, allowed_hosts=['example.com'])
app.add_middleware(TrustedHostMiddleware, allowed_hosts=['localhost'])
```
