This reverts commit fad897346f286303a6c4a2cb432ea44058e470cd, reversing changes made to e284b0ddae072311617a6fdd8393eb04aba873d2.
11 lines
176 B
Go
11 lines
176 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/astaxie/beego/core/utils"
|
|
)
|
|
|
|
// GetGOPATHs returns all paths in GOPATH variable.
|
|
func GetGOPATHs() []string {
|
|
return utils.GetGOPATHs()
|
|
}
|