starts cron and register recurring tasks
| 50 | |
| 51 | // starts cron and register recurring tasks |
| 52 | static bool _Cron_Start(void) { |
| 53 | // start CRON |
| 54 | bool res = Cron_Start(); |
| 55 | |
| 56 | // register recurring tasks |
| 57 | Cron_AddRecurringTasks(); |
| 58 | |
| 59 | return res; |
| 60 | } |
| 61 | |
| 62 | // print RedisGraph configuration |
| 63 | static void _Print_Config |
no test coverage detected