Files
Wallenc/Report/puml/fig_19_clean_architecture.puml

35 lines
515 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@startuml fig_19_clean_architecture
scale 3
title Clean Architecture и модули Gradle
skinparam defaultFontName "DejaVu Sans"
package ":ui" as UI {
[Compose экраны]
[ViewModel]
}
package ":usecases" as UC {
[Use cases]
}
package ":domain" as DOM {
[Модели, Encryptor]
[IStorage]
}
package ":infrastructure-android" as INF {
[Room, OAuth,\nадаптеры]
}
package ":app" as APP {
[Hilt, навигация]
}
UI --> UC
UC --> DOM
INF --> DOM
APP --> UI
APP --> INF
@enduml