You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
528 B

  1. digraph {
  2. API -> Database [color=green];
  3. API -> Database [color=orange];
  4. Database -> API [color=red];
  5. API -> Webinterface [color=red];
  6. Producer -> API [color=orange];
  7. Producer -> API [color=green];
  8. Producer -> "Queue Service" [color=orange];
  9. "Queue Service" -> Worker [color=orange];
  10. Worker -> "Image File" [color=blue];
  11. Worker -> "Queue Service" [color=green];
  12. "Queue Service" -> Producer [color=green];
  13. "Image File" -> "Storage Backend" [color=blue];
  14. "Storage Backend" -> Webinterface [color=red];
  15. }