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/news_module.dot
Ondřej Mekina c6352dd28c 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

24 lines
666 B
Plaintext

digraph newsmod {
rankdir=TD;
graph [fontname="arial"];
node [fontname="arial"];
edge [fontname="arial"];
USER [label="User"]
STOCK [label="Stock module"]
HTTP [shape=box3d,label="HTTP server (inferium)"]
REST [shape=box3d,label="REST server (inferium)"]
DB [shape=box,label="Database (sled)"]
CORE [shape=box,label="Logic core"]
NEWS [label="External news API"]
AI [shape=box,label="Sentiment analyzer (VADER)"]
USER -> HTTP
USER -> STOCK
STOCK -> REST
CORE -> DB [style="dashed"]
REST -> CORE [style="dashed"]
HTTP -> CORE [style="dashed"]
CORE -> NEWS
CORE -> AI [style="dashed"]
}