Skip to content

Instantly share code, notes, and snippets.

@renatoalencar
Last active June 7, 2020 02:40
Show Gist options
  • Save renatoalencar/466cad8de4c757938a548b535be83c8f to your computer and use it in GitHub Desktop.
Save renatoalencar/466cad8de4c757938a548b535be83c8f to your computer and use it in GitHub Desktop.
(defrecord Database [uri database connection])
(defn create-database [uri]
(let [{:keys [db conn]} (mg/connect-via-uri uri)]
(map->Database {:uri uri
:database db
:connection conn})))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment