Categories
Go

Golang Resources

A list of resources that have helped me get familiar with Go and all its glory. Setting up the workspace Set your $GOPATH to point to your root folder /goapp Set your $GOBIN to point to $GOPATH/bin Create 3 folders in $GOPATH (src, pkg, bin) Create the main app folder with the convention of $GOPATH/src/github.com/{username}/goapp/main.go Working with JSON […]