John Roesler
John Roesler
@truztee this repo is no longer maintained sadly. Come checkout our fork that is very well maintained and updated! https://github.com/go-co-op/gocron
Regarding handling time - we could make an interface and use that and then mock it when we test ``` package time import "time" type Time interface { Now() time.Time...
hey, this repo is no longer maintained (per the note in the readme) - we have a maintained fork over at https://github.com/go-co-op/gocron and recently added support for this exact use!...
hey, this repo is no longer maintained (per the note in the readme) - we have a maintained fork over at https://github.com/go-co-op/gocron and recently added support for this exact use!...
Would it make sense for gocron to support this feature? I don't disagree that it would be useful, just wondering on the scope of the project and whether scheduling a...
@varsraja I'm not opposed to having this feature in gocron. If it were to be done, I'd like to have an interface that multiple databases could be implemented for (redis,...
Good news, the latest release added uuids for jobs, so we now have unique identifiers. The fields on the job struct are private, so we'll just want to make a...
Hm, or perhaps, since the interface will be within the gocron project, it can just accept a Job and then convert it to a JobStorage object for a sql implementation...
> Is it possible to store as file (json dump) as well apart from databases. Certainly. I think the beauty of the interface is that it can implemented in whatever...
@4zore4 if you are interested in contributing - let's look at adding it to the v2 branch (as that's the future 😄)