Skip to content

Commit

Permalink
Merge branch 'master' into #1134-update-llvm-windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Sloox authored Mar 24, 2021
2 parents 558d1a6 + 19ff90f commit 42e1645
Showing 1 changed file with 52 additions and 0 deletions.
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

0 comments on commit 42e1645

Please sign in to comment.