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

52 lines
650 B
Markdown

# Bounded Contexts
```plantuml
@startuml
package "configuration" {
[TargetCommand]
}
package "desktop" {
[DesktopCommand]
}
package "server" {
[ServerCommand]
}
server ..> configuration
desktop ..> configuration
using ..> used
@enduml
```
# DDD in Provs
2 years ago
```plantuml
@startuml
'https://plantuml.com/class-diagram
package application {
class Application
}
package domain {
class Service
class Domain
}
Application ..> Service
Application ..> Domain
package infrastructure {
class Repository
class Provs
}
Service ..> Domain
Service ..> Service
Service ..> Repository
Service ..> Provs
using ..> used
2 years ago
@enduml
```