You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
399 B

digraph nestjs1 {
rankdir=LR
Controleur [shape="rectangle"]
Controleur -> Service -> { S1 S2 S3 Sn }
Sn [label="...", color="dimgrey"]
subgraph cluster_Module {
Controleur; Service
label="Module"
style=dotted
}
subgraph cluster_S1 {
S1
style=dotted
}
subgraph cluster_S2 {
S2
style=dotted
}
subgraph cluster_S3 {
S3
style=dotted
}
}