Flask - Middleware and Extensions
Given this Flask app code snippet using Flask-Compress, what will be the Content-Encoding header in the HTTP response?
```python
from flask import Flask
from flask_compress import Compress
app = Flask(__name__)
compress = Compress(app)
@app.route('/')
def index():
return 'Hello World!'
```
Options:
