1 package rifs 2 3 import ( 4 "os" 5 "path" 6 ) 7 8 var ( 9 appPath string 10 ) 11 12 func init() { 13 goPath := os.Getenv("GOPATH") 14 appPath = path.Join(goPath, "src", "github.com", "dsoprea", "go-utility", "filesystem", "v2") 15 } 16
View as plain text