lib/panoptes/client/me.rb in panoptes-client-1.0.0.pre1 vs lib/panoptes/client/me.rb in panoptes-client-1.0.0
- old
+ new
@@ -1,12 +1,14 @@
+# frozen_string_literal: true
+
require 'openssl'
require 'jwt'
module Panoptes
class Client
module Me
def me
- panoptes.get("/me")["users"][0]
+ panoptes.get('/me')['users'][0]
end
end
end
end