slack-ruby/slack-ruby-client

View on GitHub
lib/slack/web/api/templates/endpoints.erb

Summary

Maintainability
Test Coverage
# frozen_string_literal: true
# This file was auto-generated by lib/tasks/web.rake

<% files.sort.each do |f| %>
require_relative 'endpoints/<%= f %>'
<% end %>

module Slack
  module Web
    module Api
      module Endpoints
        include Slack::Web::Api::Mixins::Conversations
        include Slack::Web::Api::Mixins::Users

<% files.sort.each do |f| %>
        include <%= f.camelize %>
<% end %>
      end
    end
  end
end