module Access class Token def self.verify(options = {}) Access::Api.new.verify options end def self.verify_other(token, options = {}) Access::Api.new.verify_other token, options end end end