taler-docs

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

commit 83ea5bb2cde26ec0442a8d11a01833305a89dfdf
parent 1a7df88b682a88be8114c4c2f53071f416f82206
Author: Özgür Kesim <oec-taler@kesim.org>
Date:   Wed,  2 Oct 2024 11:45:25 +0200

_same_ backend component exposes private and public API's

Diffstat:
Mimages/arch-api.dot | 18+++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/images/arch-api.dot b/images/arch-api.dot @@ -1,16 +1,20 @@ digraph G { - user[label="Customer browser"]; - admin[label="Shop admin"]; - Backend[color="blue"]; - BackendPublic[color="blue", label="Backend\n(public interface)"]; + user[label="Customer Browser"]; + admin[label="Shop Admin"]; + Backend[color="red", label="Private API", shape="rect"]; + BackendPublic[color="green", label="Public API", shape="rect"]; subgraph cluster_0 { Frontend; Backoffice; - Backend; - BackendPublic; + subgraph cluster_backend { + Backend; + BackendPublic; + label="Merchant Backend"; + color="blue"; + } DBMS; - label="Shop server"; + label="Shop Server"; } subgraph cluster_1 { Exchange;