Skip to content

f2prateek/cron

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

cron

Cron library for golang.

Usage

// Create a ticker.
ticker := cron.Must(cron.Parse("0/5 * * * * * *"))

// Wait for a tick. Run inside in a loop if you want to wait repeatedly.
t := <-ticker.C

// Do some work.
doWork()

// Stop the ticker.
t.Stop()

About

Cron library for Go.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages