Created
March 22, 2021 05:46
-
-
Save MarioCarrion/47658ff4dd99f4c8b9579ca75f19046a to your computer and use it in GitHub Desktop.
Tree output of a Go project using "internal/" with Domain Driven Design and Hexagonal Architecture
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❯ tree internal/ | |
internal/ | |
├── datastore | |
│ ├── file1.go | |
│ ├── file2.go | |
│ ├── fileN.go | |
├── api | |
│ ├── file1.go | |
│ ├── file2.go | |
│ ├── fileN.go | |
├── service | |
│ ├── file1.go | |
│ ├── file2.go | |
│ ├── fileN.go | |
├── file1.go | |
├── file2.go | |
└── fileN.go |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment