aboutsummaryrefslogtreecommitdiff
path: root/documentation/components.dot
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/components.dot')
-rw-r--r--documentation/components.dot21
1 files changed, 21 insertions, 0 deletions
diff --git a/documentation/components.dot b/documentation/components.dot
new file mode 100644
index 0000000..f00dff3
--- /dev/null
+++ b/documentation/components.dot
@@ -0,0 +1,21 @@
+digraph core {
+
+ rankdir = BT;
+
+ "core-reporting";
+ "core-storage" -> "core-reporting";
+ "core-messaging" -> "core-reporting";
+ "core-database" -> "core-reporting";
+ "core-database" -> "core-types";
+ "core-rest" -> "core-reporting";
+ "core-rest" -> "core-types";
+ "core-init" -> "core-storage";
+ "core-init" -> "core-messaging";
+ "core-init" -> "core-database";
+ "core-init" -> "core-rest";
+ "core-init" -> "core-reporting";
+
+ core [color=red];
+ core -> "core-init" [color=red];
+
+}