(define-module (src media-uploader) #:use-module (ice-9 format) #:export (__ignore upload)) (define (__ignore . rest) #f) (define* (upload path #:key (uri "") #:allow-other-keys) (format #t "URI: ~a Path ~a~&" uri path))