|
|
# Dependencies
|
|
```plantuml
|
|
|
|
|
Bob -> Alice : hello
|
|
|
As you can see in the graph below, B depends on A:
|
|
Alice -> Bob : hi
|
|
|
|
|
``` |
|
|
```dot
|
|
\ No newline at end of file |
|
|
strict digraph {
|
|
|
|
|
"n0" ["label" = "A"];
|
|
|
|
|
"n1" ["label" = "B"];
|
|
|
|
|
"n1" -> "n0";
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
\ No newline at end of file |
|
|