task.go 171 B

123456789101112131415
  1. package services
  2. import (
  3. "fmt"
  4. )
  5. func Task() {
  6. fmt.Println("task start")
  7. go AutoInsertLogToDB()
  8. go AutoInsertAdminOperateRecordToDB()
  9. fmt.Println("task end")
  10. }