We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be really nice if a function could be provided to conman/bind-connection that would wrap database-touching functions.
conman/bind-connection
Something like
(conman/bind-connection *db* {:wrapper-func log-it} "sql/queries.sql")
where a theoretical create-user! call would be defined as
create-user!
(defn create-user! [map] (REAL-create-user (log-it map)))
or something to that effect.
The text was updated successfully, but these errors were encountered:
seems like a good idea, this could work like Ring midleware
Sorry, something went wrong.
No branches or pull requests
It would be really nice if a function could be provided to
conman/bind-connection
that would wrap database-touching functions.Something like
where a theoretical
create-user!
call would be defined asor something to that effect.
The text was updated successfully, but these errors were encountered: