Skip to content

Instantly share code, notes, and snippets.

@madflojo
Created December 28, 2020 20:14
Show Gist options
  • Save madflojo/96724089f1d774a19ae3e1511bad0b44 to your computer and use it in GitHub Desktop.
Save madflojo/96724089f1d774a19ae3e1511bad0b44 to your computer and use it in GitHub Desktop.
Efs2 Project Structure Example
$ 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