https://github.com/bod/cinetoday3
WIP
https://github.com/bod/cinetoday3
Last synced: 8 months ago
JSON representation
WIP
- Host: GitHub
- URL: https://github.com/bod/cinetoday3
- Owner: BoD
- License: gpl-3.0
- Created: 2022-05-24T12:44:55.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-20T11:26:08.000Z (over 2 years ago)
- Last Synced: 2025-02-01T07:23:05.408Z (over 1 year ago)
- Language: Kotlin
- Size: 554 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# WIP!!!!!!!!
## Modules / Architecture
```mermaid
graph TD
App["App (Activities. Composables. ViewModels)"] --> Domain
App -.->|Only for DI to work!| Data
Domain["Domain (Models, Use Cases. Repository interfaces)"]
Data["Data (Repository Impls)"] --> Domain
Data --> Api
Data --> LocalStore
Api["Api (Remote models, Remote Data Sources)"]
Api --> Apollo[Apollo Kotlin]
LocalStore["Local Store (Local models, Local Data Sources)"]
LocalStore --> SqlDelight
```