Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

docs: Add flank component diagram #1733

Merged
merged 1 commit into from
Mar 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions docs/hld/flank-component-diagram.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
@startuml
'https://plantuml.com/component-diagram

left to right direction

legend left
|= Color |= Description |
|<#LightYellow>| Implemented |
|<#LightBlue>| Roadmap |
end legend

package ftl {

package presentation {
package cli {
[Command line interface]
}
package desktop {
[Desktop GUI] #LightBlue
}
package service {
[Web socket API] #LightBlue
}
}

package domain {
[Internal domain logic] <- [Public domain functions]
}

package data {
[Structures] - () Interfaces
}

package adapter {
[Google OAuth2]
[Google cloud bucket]
[Firebase Test Lab]
[Corellium] #LightBlue
}

[Command line interface] --> [Public domain functions]
[Desktop GUI] --> [Public domain functions]
[Web socket API] --> [Public domain functions]
[Public domain functions] --> Interfaces
Interfaces <---- [Google OAuth2]
Interfaces <-- [Google cloud bucket]
Interfaces <-- [Firebase Test Lab]
Interfaces <- [Corellium]

}

@enduml