Sebastián Ramírez
16 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
10 additions and
10 deletions
-
docs/en/docs/tutorial/bigger-applications.md
|
|
|
@ -17,16 +17,16 @@ Let's say you have a file structure like this: |
|
|
|
``` |
|
|
|
. |
|
|
|
├── app |
|
|
|
│ ├── __init__.py |
|
|
|
│ ├── main.py |
|
|
|
│ ├── dependencies.py |
|
|
|
│ └── routers |
|
|
|
│ │ ├── __init__.py |
|
|
|
│ │ ├── items.py |
|
|
|
│ │ └── users.py |
|
|
|
│ └── internal |
|
|
|
│ ├── __init__.py |
|
|
|
│ └── admin.py |
|
|
|
│ ├── __init__.py |
|
|
|
│ ├── main.py |
|
|
|
│ ├── dependencies.py |
|
|
|
│ └── routers |
|
|
|
│ │ ├── __init__.py |
|
|
|
│ │ ├── items.py |
|
|
|
│ │ └── users.py |
|
|
|
│ └── internal |
|
|
|
│ ├── __init__.py |
|
|
|
│ └── admin.py |
|
|
|
``` |
|
|
|
|
|
|
|
/// tip |
|
|
|
|