taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

arch.dot (393B)


      1 digraph G {
      2 
      3   user[label="Customer browser"];
      4   admin[label="Shop admin"];
      5   Backend [color="blue"];
      6   subgraph cluster_0 {
      7     Frontend;
      8     Backoffice;
      9     Backend;
     10     DBMS;
     11     label="Shop server";
     12   }
     13   subgraph cluster_1 {
     14     Exchange;
     15     label="Exchange";
     16   }
     17   user->Frontend;
     18   admin->Backoffice;
     19   Frontend->Backend;
     20   Backoffice->Backend;
     21   Backend->DBMS;
     22   Backend->Exchange;
     23 }