Skip to content

Instantly share code, notes, and snippets.

@duck1123
Created November 8, 2011 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save duck1123/1349315 to your computer and use it in GitHub Desktop.
Save duck1123/1349315 to your computer and use it in GitHub Desktop.
Can't find class
(ns langohr-test.core
(:require (langohr [basic :as basic]
[channel :as channel]
[core :as core])))
(defn get-foo
[]
(let [channel (channel/open (core/connect))]
;; Works
(basic/get channel "foo")
;; Error: Unable to resolve classname: GetResponse
(.getBody (basic/get channel "foo"))
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment