Created
November 24, 2023 18:35
-
-
Save falvojr/237717e1479205ae9eec4eb3b0ddf47b to your computer and use it in GitHub Desktop.
Speech2Learning Package Diagram
This file contains hidden or 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
graph RL; | |
subgraph "Infrastructure"; | |
Web(Web & Devices) <--> Con | |
UI("User Interface (UI)") <--> Pre | |
DB(Databases & External Integrations) <--> Gat | |
subgraph "Adapters"; | |
Con(Controllers) <--> UC | |
Pre(Presenters) <--> UC | |
Gat(Gateways) -..-> |implements| IGat | |
subgraph "Use Cases"; | |
UC(Use Cases) <--> LA | |
UC <--> IGat | |
subgraph "Entities"; | |
LA("Learning Objects (LOs)") | |
LA -.- LOA[Metadata includes:\n Transcript, Language,\n Revision, License etc.] | |
IGat(Gateway Interfaces) | |
IGat -.- IRep(Any external integrations:\n Database, WebClient,\n Producer etc.) | |
end | |
end | |
end | |
end | |
classDef infra fill:#a3c9ff,stroke:#00315c,color:#00315c; | |
classDef adapters fill:#67dbb1,stroke:#003828,color:#003828; | |
classDef ucs fill:#ffb1c1,stroke:#5f112b,color:#5f112b; | |
classDef entities fill:#e2c54b,stroke:#3a3000,color:#3a3000; | |
classDef entities_secondary fill:#fff0c0,stroke:#3a3000,color:#3a3000; | |
class Web,Dev,UI,DB,EXT infra; | |
class Con,Gat,Pre adapters; | |
class UC ucs; | |
class LA,IGat entities; | |
class LOA,IRep entities_secondary; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment