Created
December 28, 2020 20:14
-
-
Save madflojo/96724089f1d774a19ae3e1511bad0b44 to your computer and use it in GitHub Desktop.
Efs2 Project Structure Example
This file contains hidden or 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 -L 2 | |
. | |
├── CONTRIBUTING.md | |
├── Dockerfile | |
├── LICENSE | |
├── Makefile | |
├── README.md | |
├── app | |
│ ├── app.go | |
│ └── app_test.go | |
├── config | |
│ ├── config.go | |
│ └── config_test.go | |
├── dev-compose.yml | |
├── go.mod | |
├── go.sum | |
├── main.go | |
├── parser | |
│ ├── parser.go | |
│ └── parser_test.go | |
├── ssh | |
│ ├── ssh.go | |
│ └── ssh_test.go | |
└── vendor | |
├── github.com | |
├── golang.org | |
└── modules.txt | |
7 directories, 18 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment