Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielBarberini committed Oct 15, 2024
1 parent 588f34b commit 680ee37
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,28 +138,27 @@ sequenceDiagram
participant MongoDB
User ->> API: POST /model
API ->> MongoDB: Persist API Model
API ->> MongoDB: Persist API Model as a document
MongoDB -->> API: Model ID
API -->> User: Model ID
API -->> User: ModelCreated View
User ->> API: GET /model/:id
API ->> MongoDB: Retrieve API Model
MongoDB -->> API: Rocketpy Model
API -->> User: Rocketpy Model
API ->> MongoDB: Read API Model document
MongoDB -->> API: API Model document
API -->> User: API ModelView
User ->> API: PUT /model/:id
API ->> MongoDB: Update API Model
MongoDB -->> API: Updated Model
API -->> User: Updated Model
API ->> MongoDB: Update API Model document
API -->> User: ModelUpdated View
User ->> API: DELETE /model/:id
API ->> MongoDB: Delete API Model
API ->> MongoDB: Delete API Model document
MongoDB -->> API: Deletion Confirmation
API -->> User: Deletion Confirmation
API -->> User: ModelDeleted View
```

### Simulating and extracting RocketPY native class
### Simulating and extracting RocketPY native classes
```mermaid
sequenceDiagram
participant User
Expand Down

0 comments on commit 680ee37

Please sign in to comment.