From 05cfcf746a20f050e3f63a9724c297a8d2777d92 Mon Sep 17 00:00:00 2001 From: Nicolas Penin Date: Sat, 8 Jul 2023 07:24:12 +0200 Subject: [PATCH] Update index.md --- index.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/index.md b/index.md index 1e7599fef7..77d311e621 100644 --- a/index.md +++ b/index.md @@ -12,4 +12,15 @@ Up to here, all previously mentioned layers are usable from either client or ser - [server](server): node layer. It basically supports server side command triggers like http (This permits to have commands being served by http). - [client](client): browser layer heavily inspired from angularjs and angular from a concept perspective, but with a radically different usage approach. -![Architecture Diagram](architecture.svg) +```mermaid +%%{ init: { 'flowchart': { 'curve': 'linear' } } }%% +flowchart TB + json-rpc-ws -.-> core + cli -.-> core + storage -.-> core + commands -.-> json-rpc-ws & cli + configuration -.-> commands + pm -.-> commands + server -.-> commands + client -.-> commands +```