You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
691 B
44 lines
691 B
2 years ago
|
@startuml architecture
|
||
|
|
||
|
package "neon framework" {
|
||
|
component neon
|
||
|
component nextcloud
|
||
|
component settings
|
||
|
component sort_box
|
||
|
component file_icons
|
||
|
}
|
||
|
|
||
|
package "App implementations" {
|
||
|
component neon_files
|
||
|
component neon_news
|
||
|
component neon_notes
|
||
|
component neon_notifications
|
||
|
}
|
||
|
|
||
|
package "OpenAPI" {
|
||
|
component dynamite
|
||
|
component specs
|
||
|
}
|
||
|
|
||
|
component app
|
||
|
|
||
|
app ..> neon_files
|
||
|
app ..> neon_news
|
||
|
app ..> neon_notes
|
||
|
app ..> neon_notifications
|
||
|
|
||
|
neon_files --> neon
|
||
|
neon_news --> neon
|
||
|
neon_notes --> neon
|
||
|
neon_notifications --> neon
|
||
|
|
||
|
|
||
|
neon --> nextcloud
|
||
|
neon --> settings
|
||
|
neon --> sort_box
|
||
|
neon --> file_icons
|
||
|
|
||
|
dynamite --> nextcloud
|
||
|
specs --> nextcloud
|
||
|
|
||
|
@enduml
|