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:
@@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user