mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 18:15:10 +00:00
13 lines
271 B
Go
13 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
|