We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d43079d commit 3961ff9Copy full SHA for 3961ff9
blacksheep/docs/mounting.md
@@ -20,7 +20,7 @@ parent_app.mount("/example-path", child_app)
20
Example:
21
22
```python
23
-from blacksheep import Application
+from blacksheep import Application, Router
24
25
parent = Application()
26
@@ -30,7 +30,7 @@ def parent_home():
30
return "Hello, from the parent app"
31
32
33
-child = Application()
+child = Application(router=Router())
34
35
36
@child.router.get("/")
0 commit comments