doc(diagrams): add some diagrams in mermaid format

This commit is contained in:
fbachus
2026-07-31 04:10:02 +02:00
parent ee43064903
commit 48e359a315
3 changed files with 91 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
sequenceDiagram
participant api@{ "type": "entity"} as public transport API
participant ah as api_handler
participant ui as UI
participant th as transport_helper
participant db@{ "type":"database"} as database
ui-->>ah: find Station
ah-->>api: GET request w/ stationname
api-->>ah: return json
ah-->>th: provide json Map
th-->>db: store object
db-->>th: return id
th-->>ah: return object
ah-->>ui: display data