aboutsummaryrefslogtreecommitdiff
path: root/module/output/import.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/output/import.scm')
-rw-r--r--module/output/import.scm31
1 files changed, 0 insertions, 31 deletions
diff --git a/module/output/import.scm b/module/output/import.scm
deleted file mode 100644
index 47f4fd47..00000000
--- a/module/output/import.scm
+++ /dev/null
@@ -1,31 +0,0 @@
-(define-module (output import)
- :use-module (util))
-
-(define options
- '((calendar (value #t) (single-char #\c))
- (source (value #t) (single-char #\f))
- ))
-
-(define (import-main calenadrs events args)
- (define opts (getopt-long args options))
-
- (define calendar (option-ref opts 'calendar #f))
-
- (unless calendar
- (format (current-error-port)
- "Everything wroong~%"))
-
-
- ;; TODO save sourcetype and dir for vdir calendars
-
- #;
- (let ((component (make-vcomponent (option-ref args 'source "/dev/stdin")))) ;
- ;
- ;; Check UID ;
- ;; Add to calendar ;
- ;; Allocate file, save there ;
- ;
- )
-
-
- )