Archived
3
0

sketch the news module architecture (#2)

* make rough news module structure prototype

* update generic structure

* remove auth from news module structure
This commit is contained in:
2025-03-12 22:42:06 +01:00
parent 3ecdfa1c02
commit c6352dd28c
6 changed files with 58 additions and 8 deletions

View File

@@ -1,11 +1,31 @@
digraph sysdiag {
rankdir=LR
graph [fontname="arial"];
node [fontname="arial"];
edge [fontname="arial"];
RS [shape=box3d,label="REST server"]
ZA [label="API na zprávy"]
RS -> ZA
RC [shape=box,label="REST klient"]
RC -> RS
subgraph cluster_01 {
label="Modul zprávy"
Z_REST_CLIENT [shape=box,label="REST klient"]
Z_REST_SERVER [shape=box3d,label="REST server"]
Z_HTTP_SERVER [shape=box3d,label="HTTP server"]
}
subgraph cluster_02 {
label="Modul burza"
B_REST_CLIENT [shape=box,label="REST klient"]
B_REST_SERVER [shape=box3d,label="REST server"]
B_HTTP_SERVER [shape=box3d,label="HTTP server"]
}
USER [label="Uživatel"]
Z_REST_CLIENT -> B_REST_SERVER
B_REST_CLIENT -> Z_REST_SERVER
USER -> Z_HTTP_SERVER
USER -> B_HTTP_SERVER
}