|
@@ -13,8 +13,9 @@
|
|
|
|
|
|
|
|
;; Cron
|
|
;; Cron
|
|
|
(defvar *run-cron* t "Controls if starting a web should run cron tasks")
|
|
(defvar *run-cron* t "Controls if starting a web should run cron tasks")
|
|
|
-(defvar *crons* '((#'timeliner.locations:on-cron (:minute 10 :hour 0))
|
|
|
|
|
- (#'timeliner.financisto:on-cron (:minute 0 :hour 7)))
|
|
|
|
|
|
|
+(defvar *crons* (list
|
|
|
|
|
+ (list #'timeliner.locations:on-cron '(:minute 0 :hour *))
|
|
|
|
|
+ (list #'timeliner.financisto:on-cron '(:minute 0 :hour 7)))
|
|
|
"List of cron functions with their schedules")
|
|
"List of cron functions with their schedules")
|
|
|
(defvar *cron-timers* nil)
|
|
(defvar *cron-timers* nil)
|
|
|
|
|
|