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"))
))