fix: start cron in new coroutine

This commit is contained in:
Derrick Hammer 2024-01-20 11:48:10 -05:00
parent b10798d71f
commit 08e034b1cf
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,8 @@ func (c *CronServiceImpl) Start() error {
}
}
go c.scheduler.Start()
return nil
}