mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-24 06:35:39 +00:00
merge impl-v2: DESIGN.md and design.gv
This commit is contained in:
30
design.gv
Normal file
30
design.gv
Normal file
@@ -0,0 +1,30 @@
|
||||
digraph G {
|
||||
ranksep=0.7;
|
||||
node [
|
||||
fontname="Hack",
|
||||
shape="box",
|
||||
];
|
||||
|
||||
roblox_studio -> plugin [dir="both"];
|
||||
plugin -> web_server [style="dashed", dir="both"];
|
||||
|
||||
web_server -> rbx_session;
|
||||
|
||||
session -> rbx_session [dir="both"];
|
||||
session -> vfs_session;
|
||||
session -> watchers [dir="both"];
|
||||
|
||||
vfs_session -> fs;
|
||||
|
||||
rbx_session -> vfs_session [constraint=false];
|
||||
rbx_session -> middlewares;
|
||||
|
||||
roblox_studio [label="Roblox Studio"];
|
||||
fs [label="Filesystem"];
|
||||
middlewares [label="Vec<Middleware>"];
|
||||
watchers [label="Vec<PartitionWatcher>"];
|
||||
session [label="Session"];
|
||||
web_server [label="Rouille Server"];
|
||||
vfs_session [label="Arc<RwLock<VfsSession>>"];
|
||||
rbx_session [label="Arc<RwLock<RbxSession>>"];
|
||||
}
|
||||
Reference in New Issue
Block a user