Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ochairo authored Apr 5, 2024
1 parent e4f425c commit c9cbc59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,16 @@ This ensures that the application will be easy to maintain, scale and modify, en
│ │ │ └── organisms # - Complex UI components
│ │ │
│ │ ├── features # Features
│ │ │ └── [feature] # - A specific feature
│ │ │ └── [feature] # - A specific feature (Granularity can vary)
│ │ │ ├── data # - Data-related logic
│ │ │ │ ├── datasources # - Getting the raw data from api or localDB
│ │ │ │ │ ├── local # - Local data storage logic
│ │ │ │ │ └── remote # - Remote data fetching logic
│ │ │ │ └── repositories # - Select, Shape, Merge raw data for the usecase
│ │ │ ├── domain # - Feature-specific domain
│ │ │ │ ├── interfaces # - Interfaces used within the feature
│ │ │ │ └── usecases # - Feature-specific logic (retrieve data, validate data, etc..)
│ │ │ ├── presentation # - Presentation components for the feature
│ │ │ │ └── usecases # - Business logic (get data, validate data, etc..)
│ │ │ ├── presentation # - View components for the feature
│ │ │ └── [feature].module.ts # - Module file for the feature
│ │ │
│ │ ├── main.html # Entry point html
Expand Down

0 comments on commit c9cbc59

Please sign in to comment.