Skip to content

Instantly share code, notes, and snippets.

@pjstadig
Created February 25, 2022 14:18
Show Gist options
  • Save pjstadig/734bf65c1d36a8cdffe2b373d0bfddb7 to your computer and use it in GitHub Desktop.
Save pjstadig/734bf65c1d36a8cdffe2b373d0bfddb7 to your computer and use it in GitHub Desktop.
Protocol + client
(ns stadig.main
(:require
[stadig.storage :as storage]
[stadig.storage.s3 :refer [->S3Storage]]))
(defn -main
[& args]
;; ... initialize some things ...
(let [access-key (System/getenv "AWS_ACCESS_KEY_ID")
secret-key (System/getenv "AWS_SECRET_ACCESS_KEY")
storage-conn (->S3Storage access-key secret-key)]
(try
;; ... initialize some more things, or maybe just do stuff ...
(finally
(storage/close storage-conn)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment