A simple Go template for new projects.
Clone the repository and initialize a new module to try the template locally.
git clone <repo-url>
cd <repo-folder>
go mod init <module-path>go mod tidygo get example.com/awesome-lib@latestgo build ./...go run ./<project>go test ./...