mirror of
https://github.com/astaxie/beego.git
synced 2024-11-15 04:50:55 +00:00
11 lines
180 B
Go
11 lines
180 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/astaxie/beego/pkg/core/utils"
|
|
)
|
|
|
|
// GetGOPATHs returns all paths in GOPATH variable.
|
|
func GetGOPATHs() []string {
|
|
return utils.GetGOPATHs()
|
|
}
|