Skip to content

Commit

Permalink
correct require (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
dspearson authored Nov 7, 2024
1 parent 201d163 commit fa99f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/hugsql.org/docs/hugsql-adapters/setting-an-adapter.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Within your Clojure code, you will need to explicitly set the adapter. You can d
(ns my-app
(:require [hugsql.core :as hugsql]
[hugsql.adapter.next-jdbc :as next-adapter
[next.jdbc.result-set :as rs]]]))
[next.jdbc.result-set :as result-set]]]))

(defn app-init []
(hugsql/set-adapter! (next-adapter/hugsql-adapter-next-jdbc)))
Expand Down

0 comments on commit fa99f8a

Please sign in to comment.