@@ -39,6 +39,7 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env
3939│ │── secrets.py
4040│ │
4141│ ├── controllers
42+ │ │ ├── interface.py
4243│ │ ├── environment.py
4344│ │ ├── flight.py
4445│ │ ├── motor.py
@@ -57,65 +58,31 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env
5758│ │ └── rocket.py
5859│ │
5960│ ├── repositories
60- │ │ ├── repo .py
61+ │ │ ├── interface .py
6162│ │ ├── environment.py
6263│ │ ├── flight.py
6364│ │ ├── motor.py
6465│ │ └── rocket.py
6566│ │
6667│ ├── models
67- │ │ ├── aerosurfaces .py
68+ │ │ ├── interface .py
6869│ │ ├── environment.py
6970│ │ ├── flight.py
7071│ │ ├── motor.py
71- │ │ └── rocket.py
72+ │ │ ├── rocket.py
73+ │ │ │
74+ │ │ └── sub
75+ │ │ ├── aerosurfaces.py
76+ │ │ └── tanks.py
7277│ │
7378│ └── views
79+ │ ├── interface.py
7480│ ├── environment.py
7581│ ├── flight.py
7682│ ├── motor.py
7783│ └── rocket.py
7884│
7985└── tests
80- ├── integration
81- │ ├── test_environment_integration.py
82- │ ├── test_motor_integration.py
83- │ ├── test_rocket_integration.py
84- │ └── test_flight_integration.py
85- │
86- └── unit
87- ├── test_secrets.py
88- ├── test_api.py
89- │
90- ├── test_controllers
91- │ ├── test_environment_controller.py
92- │ ├── test_flight_controller.py
93- │ ├── test_motor_controller.py
94- │ └── test_rocket_controller.py
95- │
96- ├── test_services
97- │ ├── test_environment_service.py
98- │ ├── test_flight_service.py
99- │ ├── test_motor_service.py
100- │ └── test_rocket_serice.py
101- │
102- ├── test_repositories
103- │ ├── test_environment_repo.py
104- │ ├── test_flight_repo.py
105- │ ├── test_motor_repo.py
106- │ └── test_rocket_repo.py
107- │
108- ├── test_models
109- │ ├── test_environment_model.py
110- │ ├── test_flight_model.py
111- │ ├── test_motor_model.py
112- │ └── test_rocket_model.py
113- │
114- └── test_views
115- ├── test_environment_view.py
116- ├── test_flight_view.py
117- ├── test_motor_view.py
118- └── test_rocket_view.py
11986```
12087
12188## DOCS
0 commit comments