Flask - Ecosystem and Patterns
Given this async Flask route, what will be the output when accessed?
from flask import Flask
import asyncio
app = Flask(__name__)
@app.route('/')
async def home():
await asyncio.sleep(0.1)
return 'Done'