Skip to content

Instantly share code, notes, and snippets.

@pingles
Created March 30, 2015 10:58
Show Gist options
  • Save pingles/a3c56f064fe7a45d3a75 to your computer and use it in GitHub Desktop.
Save pingles/a3c56f064fe7a45d3a75 to your computer and use it in GitHub Desktop.
(defn -main []
;; snip
(doseq [[date client] requests]
(try
(let [file (download-report client date)]
(upload-to-s3 file))
(catch Exception e
(log/error e)
(System/exit 1)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment