5 (let ((query (uri-query uri)))
6 (serve-document-header (ext->mime "gmi"))
8 (print "No account specified.")
9 (let* ((hash (symbol->string (caar query)))
10 (account-file (make-pathname "accounts" hash)))
11 (if (file-exists? account-file)
13 (delete-file account-file)
14 (print "Garden successfully deleted."))
15 (print "Attempted to delete non-existent garden."))))
16 (print "\n=> /microbotany/ Return to μBotany")))