We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e843a09 + 7d0ec89 commit 3a6eb7fCopy full SHA for 3a6eb7f
doc.go
@@ -21,7 +21,7 @@ them in their own goroutines.
21
c := cron.New()
22
c.AddFunc("30 * * * *", func() { fmt.Println("Every hour on the half hour") })
23
c.AddFunc("30 3-6,20-23 * * *", func() { fmt.Println(".. in the range 3-6am, 8-11pm") })
24
- c.AddFunc("CRON_TZ=Asia/Tokyo 30 04 * * * *", func() { fmt.Println("Runs at 04:30 Tokyo time every day") })
+ c.AddFunc("CRON_TZ=Asia/Tokyo 30 04 * * *", func() { fmt.Println("Runs at 04:30 Tokyo time every day") })
25
c.AddFunc("@hourly", func() { fmt.Println("Every hour, starting an hour from now") })
26
c.AddFunc("@every 1h30m", func() { fmt.Println("Every hour thirty, starting an hour thirty from now") })
27
c.Start()
0 commit comments