- remove useless routinepool

This commit is contained in:
gazebo
2018-12-02 11:21:59 +08:00
parent f5b89fd524
commit 4bdfd03073

View File

@@ -1,15 +0,0 @@
package legacy
import (
"git.rosy.net.cn/baseapi/utils/routinepool"
"github.com/astaxie/beego"
)
var (
RoutinePool *routinepool.Pool
)
func init() {
routinePoolSize := beego.AppConfig.DefaultInt("routinePoolSize", 0)
RoutinePool = routinepool.New(routinePoolSize, routinePoolSize)
}