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 def self.verify_filter(options = {}) Access::Api.new.verify_filter options end end end