2020-09-05 10:07:42 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
2020-10-08 09:17:15 +00:00
|
|
|
"github.com/astaxie/beego/core/utils"
|
2020-09-05 10:07:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetGOPATHs returns all paths in GOPATH variable.
|
|
|
|
func GetGOPATHs() []string {
|
|
|
|
return utils.GetGOPATHs()
|
|
|
|
}
|