1(define-module (toobusy toobusy)2 #:use-module (toobusy util)34 #:export (DTSTART_SLOT5 DTEND_SLOT6 get-database-path))78(define DTSTART_SLOT 0)9(define DTEND_SLOT 1)1011(define (get-database-path)12 (path-join (xdg-dir "XDG_DATA_HOME") "xapian.db"))