core ER idea #0 added by zacts on Fri Sep 26 22:14:23 2014

;;
;; core.scm - the core Event Reflexive system
;;

(define plugins '())

(define (run-plugins action args)
  ;; phase-0 - set-work and set-level for the plugins
  (map set-work plugins)
  ;; phase-1 - do-work for the top-level plugins
  (map do-work plugins))