lib/panoptes/client/me.rb in panoptes-client-0.2.7 vs lib/panoptes/client/me.rb in panoptes-client-0.2.8
- old
+ new
@@ -1,9 +1,12 @@
+require 'openssl'
+require 'jwt'
+
module Panoptes
class Client
module Me
def me
- get("/me")["users"][0]
+ panoptes.get("/me")["users"][0]
end
end
end
end