项目作者: sumiyoshi

项目描述 :
GatewayArchitect
高级语言: Kotlin
项目地址: git://github.com/sumiyoshi/Architecture.git
创建时间: 2017-12-28T01:48:34Z
项目社区:https://github.com/sumiyoshi/Architecture

开源协议:

下载


Architecture

  1. ├── Application
  2. ├── Cli
  3. └── Http
  4. ├── Domain
  5. ├── Model
  6. ├── Sample
  7. ├── SampleEntity.php
  8. ├── SampleRepositoryInterface.php
  9. └── Service
  10. └── SampleService.php
  11. └── ValueObject
  12. └── Sample.php
  13. └── UseCase
  14. └── Sample
  15. ├── Read
  16. ├── Parameter
  17. ├── ReadInput.php
  18. └── ReadOutput.php
  19. ├── ReadQueryInterface.php
  20. └── ReadUseCase.php
  21. └── Update
  22. ├── Parameter
  23. ├── UpdateInput.php
  24. └── UpdateOutput.php
  25. ├── UpdateCommandInterface.php
  26. ├── UpdateQueryInterface.php
  27. └── UpdateUseCase.php
  28. └── Infrastructure
  29. ├── Adapter
  30. └── Sample
  31. ├── ReadAdapter.php
  32. └── UpdateAdapter.php
  33. ├── Client
  34. └── AClient.php
  35. ├── DataAccess
  36. ├── Dao
  37. └── ADao.php
  38. └── File
  39. └── AFile.php
  40. └── Repository
  41. └── SampleRepository.php