Example of simple GoZix application.
git clone https://github.com/gozix/boilerplate.git
.
├── .bin // Resources and binary components
├── cmd // Project components
│ └── app // Executable component
│ ├── internal // Component libraries
│ └── main.go // Component entry point
├── internal // Project common libraries
├── vendor // Project dependencies
├── Gopkg.lock // Dep lock file
├── Gopkg.toml // Dep manifest
├── Makefile // Project make file
└── README.md // Project readme
You can find documentation on pkg.go.dev and read source code if needed.
If you have any questions, feel free to create an issue.