9 lines
227 B
Plaintext
9 lines
227 B
Plaintext
digraph ownership {
|
|
MyClient [shape=box];
|
|
Channel;
|
|
ChannelRequester [shape=box];
|
|
MyClient -> Channel [color=red];
|
|
Channel -> ChannelRequester [color=red, style=dashed];
|
|
ChannelRequester -> MyClient [color=green];
|
|
}
|