aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent.scm
blob: 0f000ba5b01df10a8062bf469fca4453e474ed0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(define-module (vcomponent)
  :use-module (hnh util)
  :use-module (vcomponent base)
  :use-module (vcomponent config)
  ;; :use-module ((vcomponent util instance methods)
  ;;              :select (make-vcomponent))
  :use-module ((vcomponent util parse-cal-path)
               :select (parse-cal-path))
  :re-export (make-vcomponent
              parse-cal-path
              ;; configuration items
              calendar-files default-calendar))

(define cm (module-public-interface (current-module)))
(module-use! cm (resolve-interface '(vcomponent base)))
(module-use! cm (resolve-interface '(vcomponent util instance methods)))