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