mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
16 lines
201 B
Go
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")
|
|
}
|