README.md

# SlackThrottle

Slack Web API wrapper library that automatically throttles all requests according to API rate limits.

[Documentation](https://hexdocs.pm/slack_throttle)

## Installation

  1. Add `slack_throttle` to your list of dependencies in `mix.exs`:

    ```elixir
    def deps do
      [{:slack_throttle, "~> 0.1.0"}]
    end
    ```

  2. Ensure `slack_throttle` is started before your application:

    ```elixir
    def application do
      [applications: [:slack_throttle]]
    end
    ```