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.
dda-devops-build/doc/architecture/Domain.md

15 lines
229 B
Markdown

1 year ago
# Domain
```mermaid
classDiagram
class Build {
__init__(project, config)
do_sth(project)
}
class ProjectRepository {
get_build(project): Build
set_build(project, build)
}
1 year ago
```