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

  1. package tier2
  2. import "leit.com/leit_seat_aps/glog"
  3. func RunDemandCollectorTask() {
  4. var (
  5. err error
  6. )
  7. // 运行拣料服务
  8. if err = RunDemandCollector(); err != nil {
  9. glog.InfoExtln("RunDemand", "Failed to RunDemandCollector due to: ", err)
  10. return
  11. }
  12. return
  13. }