20 lines
233 B
Markdown
20 lines
233 B
Markdown
|
```plantuml
|
||
|
@startuml
|
||
|
package "configuration" {
|
||
|
[TargetCommand]
|
||
|
}
|
||
|
|
||
|
package "desktop" {
|
||
|
[DesktopCommand]
|
||
|
}
|
||
|
|
||
|
package "server" {
|
||
|
[ServerCommand]
|
||
|
}
|
||
|
|
||
|
server ..> configuration
|
||
|
desktop ..> configuration
|
||
|
|
||
|
using ..> used
|
||
|
@enduml
|
||
|
```
|