From c9cbc5933e9afdaf9f08f2741c97dbba3e9e0966 Mon Sep 17 00:00:00 2001 From: ochairo <19258508+ochairo@users.noreply.github.com> Date: Fri, 5 Apr 2024 15:52:30 +0900 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0b86a53..0d9513a 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ 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 @@ -63,8 +63,8 @@ This ensures that the application will be easy to maintain, scale and modify, en │ │ │ │ └── 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