cron icon indicating copy to clipboard operation
cron copied to clipboard

Hello, I changed the code again to support the complete 'L'

Open bugfan opened this issue 5 years ago • 3 comments

Please check it when you are free you can test like this,(or you can change your machine local time):

package main

import (
	"cron"
	"fmt"
	"time"
)

func main() {
	c := cron.New()
	c.Start()
	defer c.Stop()
	c.AddFunc("0-59 * L * 4L", func() {
		fmt.Println("test print:", time.Now())
	})
	<-(chan int)(nil)
}

bugfan avatar Jan 15 '20 09:01 bugfan

can you please resolve the build failure?

pradykaushik avatar Mar 11 '20 19:03 pradykaushik

@robfig Could you please review this PR?

zhufenggood avatar May 03 '20 07:05 zhufenggood

@robfig Could you please take a look?

0xPoe avatar Jun 16 '20 01:06 0xPoe