Codebase list golang-github-gobuffalo-packr / 83b709b3-e6f8-4c49-9a3d-7283b6938407/main env.go
83b709b3-e6f8-4c49-9a3d-7283b6938407/main

Tree @83b709b3-e6f8-4c49-9a3d-7283b6938407/main (Download .tar.gz)

env.go @83b709b3-e6f8-4c49-9a3d-7283b6938407/mainraw · history · blame

package packr

import (
	"github.com/gobuffalo/envy"
)

// GoPath returns the current GOPATH env var
// or if it's missing, the default.
var GoPath = envy.GoPath

// GoBin returns the current GO_BIN env var
// or if it's missing, a default of "go"
var GoBin = envy.GoBin