Skip to content

Commit

Permalink
Update project structure diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewSazonov committed Aug 19, 2024
1 parent d3f92f7 commit e7fa0f7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions examples/BasicPy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
│ │ │ └── Report.qml # Mock logic for the application page 'Report'
│ │ │
│ │ └── 🗂️ Py # Backend Python logic
│ │ ├── BackendProxy.py # Parent object for all other objects with logic
│ │ ├── Helpers.py # Some helper functions
│ │ ├── Status.py # Logic for the status bar
│ │ ├── Project.py # Logic for the application page 'Project'
│ │ └── Report.py # Logic for the application page 'Report'
│ │ ├── backend_proxy.py # Parent object for all other objects with logic
│ │ ├── helpers.py # Some helper functions
│ │ ├── status.py # Logic for the status bar
│ │ ├── project.py # Logic for the application page 'Project'
│ │ └── report.py # Logic for the application page 'Report'
│ │
│ └── 🗂️ Gui # Frontend GUI components
│ ├── qmldir
Expand Down
10 changes: 5 additions & 5 deletions examples/IntermediatePy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
│ │ │ └── Report.qml # Mock logic for the application page 'Report'
│ │ │
│ │ └── 🗂️ Py # Backend Python logic
│ │ ├── BackendProxy.py # Parent object for all other objects with logic
│ │ ├── Helpers.py # Some helper functions
│ │ ├── Status.py # Logic for the status bar
│ │ ├── Project.py # Logic for the application page 'Project'
│ │ └── Report.py # Logic for the application page 'Report'
│ │ ├── backend_proxy.py # Parent object for all other objects with logic
│ │ ├── helpers.py # Some helper functions
│ │ ├── status.py # Logic for the status bar
│ │ ├── project.py # Logic for the application page 'Project'
│ │ └── report.py # Logic for the application page 'Report'
│ │
│ └── 🗂️ Gui # Frontend GUI components
│ ├── qmldir
Expand Down

0 comments on commit e7fa0f7

Please sign in to comment.