# frozen_string_literal: true require_relative './paginated_response' require_relative './representer/industries_response' module ONEAccess module Response class IndustriesResponse < PaginatedResponse represented_by Representer::IndustriesResponse end end end