mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
9 lines
145 B
Go
9 lines
145 B
Go
package cron
|
|
|
|
import "github.com/spf13/cast"
|
|
|
|
func (s *server) RemoveTask(taskId int) {
|
|
name := cast.ToString(taskId)
|
|
s.cron.RemoveJob(name)
|
|
}
|