Go 언어로 작성된 DDD 샘플 프로젝트
golang-standards/project-layout 를 토대로 구성
디렉토리 | 설명 |
---|---|
/cmd |
Main applications for this project. The directory name for each application should match the name of the executable you want to have (e.g., /cmd/myapp ). |
/internal |
Private application and library code. |
/internal/app |
Presentation packages are placed here. |
/internal/pkg |
Domain packages are placed here. |