博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
golang 版本的 crontab
阅读量:6035 次
发布时间:2019-06-20

本文共 346 字,大约阅读时间需要 1 分钟。

hot3.png

 package main  import (     "fmt"        "github.com/robfig/cron"       )  func main() {     spec := "0, 0, 0, *, *, *"      c := cron.New()     c.AddFunc(spec, myFunc)     c.Start()     select {} }      func myFunc() {          fmt.Println(" come here myfunc.") }     // 每天凌晨0点就会调用一次callYourFunc函数

转载于:https://my.oschina.net/u/567830/blog/657548

你可能感兴趣的文章