Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 442 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 442 Bytes

Проект для изучения Mermaid

flowchart TD
    mainDb[(PostgreSQL)]
    botDb[(PostgreSQL)]
    api[API]
    service[Worker Service]
    botService[Telegram Bot]
    broker[[RabbitMQ]]
    frontend[Frontend]

botService --> botDb
api ---> mainDb
service ---> mainDb
frontend --"REST"--> api ---> broker --> service
service ---> broker
botService ---> broker
broker ---> botService