gotosocial/vendor/github.com/dsoprea/go-utility/v2/filesystem/common.go
2022-01-23 14:41:31 +01:00

16 lines
201 B
Go

package rifs
import (
"os"
"path"
)
var (
appPath string
)
func init() {
goPath := os.Getenv("GOPATH")
appPath = path.Join(goPath, "src", "github.com", "dsoprea", "go-utility", "filesystem")
}