-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into #1134-update-llvm-windows
- Loading branch information
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |