@@ -39,6 +39,7 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env
39
39
│ │── secrets.py
40
40
│ │
41
41
│ ├── controllers
42
+ │ │ ├── interface.py
42
43
│ │ ├── environment.py
43
44
│ │ ├── flight.py
44
45
│ │ ├── motor.py
@@ -57,65 +58,31 @@ $ touch .env && echo MONGODB_CONNECTION_STRING="$ConnectionString" > .env
57
58
│ │ └── rocket.py
58
59
│ │
59
60
│ ├── repositories
60
- │ │ ├── repo .py
61
+ │ │ ├── interface .py
61
62
│ │ ├── environment.py
62
63
│ │ ├── flight.py
63
64
│ │ ├── motor.py
64
65
│ │ └── rocket.py
65
66
│ │
66
67
│ ├── models
67
- │ │ ├── aerosurfaces .py
68
+ │ │ ├── interface .py
68
69
│ │ ├── environment.py
69
70
│ │ ├── flight.py
70
71
│ │ ├── motor.py
71
- │ │ └── rocket.py
72
+ │ │ ├── rocket.py
73
+ │ │ │
74
+ │ │ └── sub
75
+ │ │ ├── aerosurfaces.py
76
+ │ │ └── tanks.py
72
77
│ │
73
78
│ └── views
79
+ │ ├── interface.py
74
80
│ ├── environment.py
75
81
│ ├── flight.py
76
82
│ ├── motor.py
77
83
│ └── rocket.py
78
84
│
79
85
└── 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
119
86
```
120
87
121
88
## DOCS
0 commit comments