https://github.com/gofarsi/clean-layout
Clean Architecture layout Persian
https://github.com/gofarsi/clean-layout
Last synced: about 1 year ago
JSON representation
Clean Architecture layout Persian
- Host: GitHub
- URL: https://github.com/gofarsi/clean-layout
- Owner: GoFarsi
- Created: 2023-02-08T07:01:16.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-09T06:53:21.000Z (over 3 years ago)
- Last Synced: 2025-03-11T05:35:49.557Z (over 1 year ago)
- Size: 18.6 KB
- Stars: 20
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clean Architect layout
در این رپو ما یک نمونه layout درخصوص معماری کلین قرار دادیم و هر بخش را توضیح دادیم.
```mermaid
graph TD
A[fa:fa-user Client]
A --> B[http server]
A --> C[grpc server]
A --> D[graph server]
B --> E[controller]
C --> F[service]
E --> G[usecase - business logic]
F --> G[usecase - business logic]
G --> J[external service]
G --> H[repository]
H --> |CRUD get/insert/update/delete| I[fa:fa-database Database]
```