项目作者: sumiyoshi
项目描述 :
GatewayArchitect
高级语言: Kotlin
项目地址: git://github.com/sumiyoshi/Architecture.git
Architecture
├── Application
│ ├── Cli
│ └── Http
├── Domain
│ ├── Model
│ │ ├── Sample
│ │ │ ├── SampleEntity.php
│ │ │ ├── SampleRepositoryInterface.php
│ │ │ └── Service
│ │ │ └── SampleService.php
│ │ └── ValueObject
│ │ └── Sample.php
│ └── UseCase
│ └── Sample
│ ├── Read
│ │ ├── Parameter
│ │ │ ├── ReadInput.php
│ │ │ └── ReadOutput.php
│ │ ├── ReadQueryInterface.php
│ │ └── ReadUseCase.php
│ └── Update
│ ├── Parameter
│ │ ├── UpdateInput.php
│ │ └── UpdateOutput.php
│ ├── UpdateCommandInterface.php
│ ├── UpdateQueryInterface.php
│ └── UpdateUseCase.php
└── Infrastructure
├── Adapter
│ └── Sample
│ ├── ReadAdapter.php
│ └── UpdateAdapter.php
├── Client
│ └── AClient.php
├── DataAccess
│ ├── Dao
│ │ └── ADao.php
│ └── File
│ └── AFile.php
└── Repository
└── SampleRepository.php