You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

task.go 207 B

3 years ago
123456789101112131415
  1. package task
  2. import (
  3. "code.gitea.io/gitea/models"
  4. "code.gitea.io/gitea/services/task"
  5. )
  6. func RunTask() {
  7. for {
  8. select {
  9. case action := <-models.ActionChan4Task:
  10. task.Accomplish(action)
  11. }
  12. }
  13. }