Soundcloud's Go best practices (GopherCon 2014)

from blog lmno.lol @alvaro, | ↗ original
Having watched the video, some takeaways: Single GOPATH $GOPATH/src/github.com/soundcloud/foo Repo structure github.com/soundcloud/whatever README.md Makefile main.go support.go foo foo.go bar.go whatever-server main.go wharever-worker main.go Formatting and style Use gofmt. Google's codereview guidelines. Avoid named return parameters. Avoid...