1
0
mirror of https://github.com/beego/bee.git synced 2024-06-02 16:13:26 +00:00

fix merge

This commit is contained in:
qiantao 2020-05-24 13:11:10 +08:00
parent 92de521f36
commit 8ebc0adfd1

View File

@ -41,14 +41,6 @@ func GetBeeWorkPath() string {
return beePath
}
func GetBeeWorkPath() string {
beePath, err := filepath.Abs(filepath.Dir(os.Args[0]))
if err != nil {
panic(err)
}
return beePath
}
// Go is a basic promise implementation: it wraps calls a function in a goroutine
// and returns a channel which will later return the function's return value.
func Go(f func() error) chan error {