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
709 B
44 lines
709 B
@startuml architecture |
|
|
|
package "Neon framework" { |
|
component neon |
|
component nextcloud |
|
component sort_box |
|
component file_icons |
|
} |
|
|
|
package "Clients" { |
|
component neon_dashboard |
|
component neon_files |
|
component neon_news |
|
component neon_notes |
|
component neon_notifications |
|
} |
|
|
|
package "OpenAPI" { |
|
component dynamite |
|
component specifications |
|
} |
|
|
|
component app |
|
|
|
app ..> neon_dashboard |
|
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 --> sort_box |
|
neon --> file_icons |
|
|
|
dynamite --> nextcloud |
|
specifications --> nextcloud |
|
|
|
@enduml
|
|
|