<p>I am using what seems to be the most popular cron package by robfig: <a href="https://godoc.org/github.com/robfig/cron" rel="nofollow">https://godoc.org/github.com/robfig/cron</a>. Currently I know that I can invoke an hourly cron job with:</p>
<pre><code>c.AddFunc("@hourly", func() { fmt.Println("Every hour") })
</code></pre>
<p>However I wonder is it possible to set it so that it only starts after (for example) Sep 1st, 2017, besides just having an infinite loop to check the current time every x minutes? If it's not possible using that package, how else can I achieve that? Thanks.</p>
