Archived
3
0
This repository has been archived on 2025-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zmp24-docs/docs/system_arch.dot
Ondřej Mekina 975ebedace sketch the news module architecture (#2)
* make rough news module structure prototype

* update generic structure

* remove auth from news module structure
2025-03-12 22:42:06 +01:00

32 lines
736 B
Plaintext

digraph sysdiag {
rankdir=LR
graph [fontname="arial"];
node [fontname="arial"];
edge [fontname="arial"];
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
}