Simple scheduler write in go. With this scheduler, you can schedule task that run at specific time for example run a task every day at 8:30:00
Items
Library used 2 main structures, the Scheduler and the Task
The goal of the scheduler is to hold the list of task that shoud be scheduled and start them async. The scheduler is build to run async also, so you need to block your main program.