mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-21 05:06:29 +00:00
39 lines
911 B
Plaintext
39 lines
911 B
Plaintext
digraph G {
|
|
graph [
|
|
ranksep = "0.7",
|
|
nodesep = "1.0",
|
|
];
|
|
node [
|
|
fontname = "Hack",
|
|
shape = "record",
|
|
];
|
|
|
|
roblox_studio -> plugin [dir = "both"];
|
|
plugin -> web_server [style = "dashed", dir = "both"];
|
|
|
|
web_server -> session;
|
|
|
|
session -> rbx_session;
|
|
session -> fs_watcher;
|
|
session -> message_queue;
|
|
|
|
fs_watcher -> imfs [weight = "10"];
|
|
fs_watcher -> rbx_session [constraint = "false"];
|
|
|
|
imfs -> fs;
|
|
|
|
rbx_session -> imfs;
|
|
rbx_session -> middlewares [weight = "10"];
|
|
rbx_session -> message_queue [constraint = "false"];
|
|
|
|
plugin [label = "Studio Plugin"];
|
|
roblox_studio [label = "Roblox Studio"];
|
|
fs [label = "Filesystem"];
|
|
fs_watcher [label = "Filesystem Watcher"];
|
|
session [label = "Session"];
|
|
web_server [label = "Web API"];
|
|
imfs [label = "In-Memory Filesystem"];
|
|
rbx_session [label = "RbxSession"];
|
|
message_queue [label = "MessageQueue"];
|
|
middlewares [label = "Middlewares"];
|
|
} |