mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-11 03:37:42 +00:00
copy config.yaml to docker image enable external usage of dashboard package gofmt fix comment use packr for assets add gobuffalo/packr dependency add dependencies fix pointer issues add output-file option
14 lines
271 B
Go
14 lines
271 B
Go
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
|