fix: missing provide for gocron

This commit is contained in:
Derrick Hammer 2024-01-28 03:54:33 -05:00
parent ab3dd648e1
commit faa7387106
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 0 deletions

View File

@ -26,6 +26,7 @@ type CronServiceParams struct {
var Module = fx.Module("cron", var Module = fx.Module("cron",
fx.Options( fx.Options(
fx.Provide(NewCronService), fx.Provide(NewCronService),
fx.Provide(gocron.NewScheduler),
), ),
) )