This commit is contained in:
Peter Maquiran
2025-03-08 16:32:19 +01:00
parent 715615a445
commit 9e7fff83a0
3 changed files with 39 additions and 41 deletions
+31 -33
View File
@@ -52,44 +52,42 @@ The project is divided into several key sections, each serving a specific purpos
- **utils**: Utility functions and constants.
├── package-lock.json
├── package.json
├── src
│ ├── common
│ ├── core
│ │ ├── attachment
│ │ │ ├── entity
│ │ │ ├── repository
├── package-lock.json
├── package.json
├── src
│ ├── common
│ ├── core
│ │ ├── chat
│ │ │ ├── entity
│ │ │ ├── repository
│ │ │ └── use-cases
│ ├── module
│ │ ├── gabinete
│ │ │ ├── domain
│ │ │ ├── data
│ │ ├── Agenda
│ │ │ ├── domain
│ │ │ ├── data
│ ├── UI
│ │ ├── pages
│ │ │ ├── share
| │ │ │ ├── buttons
│ │ │ │ └── modal
│ ├── module
│ │ ├── agenda
│ │ │ ├── domain
│ │ │ ├── data
│ │ ├── chat
│ │ │ ├── domain
│ │ │ ├── data
│ ├── UI
│ │ ├── pages
│ │ │ ├── share
| │ │ │ ├── buttons
│ │ │ │ └── modal
│ │ │ ├── Home
│ │ │ | ├── service
│ │ │ │ └── store
│ │ │ ├── Agenda
│ │ │ ├── Gabinete
│ │ ├── Actions
│ │ │ ├── Chat
│ ├── infra
│ │ │ | ├── service
│ │ │ │ └── store
│ │ │ ├── Agenda
│ │ │ ├── Chat
├── infra
│ │ ├── http
│ │ ├── socket
│ │ ├── database
│ │ ├── camera
│ ├── utils
│ │ ├── date.ts
│ │ ├── exception.ts
│ │ ├── sort.ts
│ ├── libs
│ │ ├── camera
│ ├── utils
│ │ ├── date.ts
│ │ ├── exception.ts
│ │ ├── sort.ts
│ ├── libs
## Achieving Reusability