Skip to content

JBDionisio/flutter-astronomy_picture

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Astronomy Pictures

Requirements

Architecture

Workflow

Structure

root
├── lib
|   ├── app
|   |   ├── modules
|   |   |    └── module ------------------------- (Application module)
|   |   |           ├── domain ------------------ (Hosts business cases)
|   |   |           |    ├── entities ----------- (Corporate business cases)
|   |   |           |    ├── params ------------- (API Parameters)
|   |   |           |    ├── i_repositories ----- (Repository interfaces)
|   |   |           |    └── usecases ----------- (Application Business cases)
|   |   |           ├── external ---------------- (Hosts external access)
|   |   |           |    ├── datasources -------- (Implementation of datasources)
|   |   |           |    └── mapper ------------- (Entity serialization)
|   |   |           ├── infra ------------------- (Domain support layer)
|   |   |           |    ├── i_datasources ------ (Datasource Interfaces)
|   |   |           |    └── repositories ------- (Implementation of repositories)
|   |   |           └── presenter --------------- (I/O layer and application interactions with the user)
|   |   └── shared ------------------------------
|   |        ├── components --------------------- 
|   |        ├── contracts ---------------------- 
|   |        ├── errors ------------------------- 
|   |        ├── services -----------------------  
|   |        └── utils -------------------------- 
├── test ---------------------------------------- (Unit tests)
|   └── app
|       └── modules
|            └── module
|                   ├── domain
|                   |    └── usecases -----------
|                   ├── external
|                   |    └── datasources --------
|                   └── infra
|                        └── repositories -------
├── README.md
└── ...------------------------------------------

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages