diff --git a/cmd/portal/start.go b/cmd/portal/start.go index 05d47aa..3adb021 100644 --- a/cmd/portal/start.go +++ b/cmd/portal/start.go @@ -19,9 +19,14 @@ func startDatabase(p interfaces.Portal) error { return p.DatabaseService().Start() } +func startCron(p interfaces.Portal) error { + return p.CronService().Start() +} + func getStartList() []startFunc { return []startFunc{ startProtocolRegistry, startDatabase, + startCron, } }