SJA APS后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
275 B

package tier2
import "leit.com/leit_seat_aps/glog"
func RunDemandCollectorTask() {
var (
err error
)
// 运行拣料服务
if err = RunDemandCollector(); err != nil {
glog.InfoExtln("RunDemand", "Failed to RunDemandCollector due to: ", err)
return
}
return
}