From cc4657cc16645f96b73a460a3f50af2f1c7fa9a2 Mon Sep 17 00:00:00 2001 From: Carsten Keller Date: Tue, 16 Jan 2024 21:17:35 +0100 Subject: [PATCH] Systemarchitektur erweitert --- ...chitektur.puml => Systemarchitektur1.puml} | 0 Doku/Systemarchitektur2.puml | 30 +++++++++++++++++++ 2 files changed, 30 insertions(+) rename Doku/{Systemarchitektur.puml => Systemarchitektur1.puml} (100%) create mode 100644 Doku/Systemarchitektur2.puml diff --git a/Doku/Systemarchitektur.puml b/Doku/Systemarchitektur1.puml similarity index 100% rename from Doku/Systemarchitektur.puml rename to Doku/Systemarchitektur1.puml diff --git a/Doku/Systemarchitektur2.puml b/Doku/Systemarchitektur2.puml new file mode 100644 index 0000000..6546561 --- /dev/null +++ b/Doku/Systemarchitektur2.puml @@ -0,0 +1,30 @@ +@startuml + +database ioBroker as i +note left of i : ioBroker wird nicht\nweiter ausgeführt +interface "SimpleAPI" as id + +collections Client as c +note left of c : Beschreibung erfolgt\nin seperatem Diagram + +package Server as s #gold { + [WebServer] as http + [ioBroker Interface] as db + interface "Datenzugriff" as d + interface "HTTP GET" as get + + http ..> [node:http] : use + http ..> [node:fs] : use + db ..> [node:http] : use + + http - get + db - d + d <. http +} + +:User: --> c +c --> get +s --> id +id -- i + +@enduml \ No newline at end of file