3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 09:19:23 +01:00
PyLink/docs/technical/protocol-modules.dot

30 lines
754 B
Plaintext
Raw Normal View History

/* Graph showing inheritance with the current PyLink protocol protocols:
* Update using: dot -Tpng protocol-modules.dot > protocol-modules.png
*/
digraph G {
ratio = 0.8; /* make the graph wider than tall */
subgraph cluster_helper {
label="Protocol module helpers";
style="filled";
node [style="filled",color="white"];
color="lightblue";
"ircs2s_common.py" -> "ts6_common.py";
}
subgraph cluster_pluggable {
label="Pluggable (full) protocol modules";
style="filled";
node [style="filled",color="white"];
color="khaki";
"ircs2s_common.py" -> "nefarious.py";
"ts6_common.py" -> "ts6.py" -> "hybrid.py";
2016-10-01 22:42:48 +02:00
"ts6.py" -> "ratbox.py";
"ts6_common.py" -> "inspircd.py";
"ts6_common.py" -> "unreal.py";
"clientbot.py";
}
}