We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddf531b commit 44cb353Copy full SHA for 44cb353
1 file changed
docs/asgi-frameworks.md
@@ -13,13 +13,13 @@ Let's invent an API for a non-existent microframework to demonstrate things furt
13
```python
14
import mangum.adapter
15
import framework
16
-from mangum import Mangum, Request
+from mangum import Mangum
17
18
app = framework.applications.Application()
19
20
21
@app.route("/")
22
-def endpoint(request: Request) -> dict:
+def endpoint(request: framework.requests.Request) -> dict:
23
return {"hi": "there"}
24
25
0 commit comments