Public Access
doc(diagrams): add some diagrams in mermaid format
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user