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.
17 lines
309 B
17 lines
309 B
2 years ago
|
digraph {
|
||
|
rankdir=LR;
|
||
|
mood [shape="tab",label="Mood TV"]
|
||
|
perf [shape="component",label="Collecteur de performances"]
|
||
|
{
|
||
|
rank=same
|
||
|
stat [shape="component",label="Analyseur des performances"]
|
||
|
db [shape="folder",label="Mesures"]
|
||
|
|
||
|
db -> stat
|
||
|
}
|
||
|
|
||
|
mood -> perf
|
||
|
perf -> db
|
||
|
db -> perf
|
||
|
}
|