renamed project to Bugis and switch from WSGI@uwsgi to ASGI@granian

This commit is contained in:
2024-10-20 16:21:30 +08:00
parent 49a9bad07f
commit 3fe6c3e434
24 changed files with 564 additions and 209 deletions

27
test/example.dot Normal file
View File

@@ -0,0 +1,27 @@
digraph D {
subgraph cluster_p {
label = "Parent";
subgraph cluster_c1 {
label = "Child one";
a;
subgraph cluster_gc_1 {
label = "Grand-Child one";
b;
}
subgraph cluster_gc_2 {
label = "Grand-Child two";
c;
d;
}
}
subgraph cluster_c2 {
label = "Child two";
e;
}
}
}