Dear all, is anybody using nippy here and is able to use the library from babashka?
nippy currently isn't available in bb, but there is a nippy pod
oh - yeah I was trying to find it ... is it this one? https://github.com/justone/brisk/releases
https://github.com/babashka/pod-registry/blob/master/examples/brisk.clj
yes
kk cool thanks - I wasn't sure - thanks for confirming
Hi borkdude, a question - I have a pod that must use a database connection via pod-babashka-sql ...
Naive question - can a pod use another pod?
My first hunch tells me that this would not be possible as the connection is within the sql pod and cannot be "moved around"
a pod can't use another pod, unless the pod is programmed to do so :)
I guess my only option is for my pod (a clojure jvm process) to call the pod-babashka-sql/execute! with the query I want to run - that should work correct?