Last active
May 16, 2021 21:49
-
-
Save madflojo/8a7f9dda62cd627799927f03f5e29b0d to your computer and use it in GitHub Desktop.
Viper Article - Before Structure
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 | |
│ └── server.go | |
├── cmd | |
│ └── go-quick | |
├── config | |
│ ├── config.go | |
│ └── config_test.go | |
├── dev-compose.yml | |
├── doc.go | |
├── docker-compose.yml | |
├── docker-entrypoint.sh | |
├── go.mod | |
├── go.sum | |
└── secret.txt | |
5 directories, 19 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment